summaryrefslogtreecommitdiff
path: root/functions/help.sh
diff options
context:
space:
mode:
Diffstat (limited to 'functions/help.sh')
-rwxr-xr-xfunctions/help.sh18
1 files changed, 18 insertions, 0 deletions
diff --git a/functions/help.sh b/functions/help.sh
new file mode 100755
index 0000000..7a6311a
--- /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
+}