diff options
Diffstat (limited to 'functions/help.sh')
-rwxr-xr-x | functions/help.sh | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/functions/help.sh b/functions/help.sh new file mode 100755 index 000000000..7a6311a3c --- /dev/null +++ b/functions/help.sh @@ -0,0 +1,18 @@ +#!/bin/sh + +# help.sh - handle help information + +Help () +{ + echo "${PROGRAM} - ${DESCRIPTION}" + echo + echo "${USAGE}" + echo "Usage: ${PROGRAM} [-h|--help]" + echo "Usage: ${PROGRAM} [-u|--usage]" + echo "Usage: ${PROGRAM} [-v|--version]" + echo + echo "${HELP}" + echo + echo "Report bugs to Debian Live project <http://debian-live.alioth.debian.org/>." + exit 0 +} |