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