8 lines
90 B
Bash
Executable file
8 lines
90 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -o errexit
|
|
set -o nounset
|
|
set -o pipefail
|
|
|
|
groff -t -man -ETascii /help.1
|
|
|