summaryrefslogtreecommitdiff
path: root/functions
diff options
context:
space:
mode:
Diffstat (limited to 'functions')
-rwxr-xr-xfunctions/help.sh21
-rwxr-xr-xfunctions/usage.sh13
2 files changed, 13 insertions, 21 deletions
diff --git a/functions/help.sh b/functions/help.sh
index b6bc683c9..5e0881795 100755
--- a/functions/help.sh
+++ b/functions/help.sh
@@ -10,27 +10,22 @@
Help ()
{
- Echo "%s - %s" "${PROGRAM}" "${DESCRIPTION}"
- echo
- Echo "Usage:"
- echo
+ printf "%s - %s\n\n" "${PROGRAM}" "${DESCRIPTION}"
+ printf "Usage:\n\n"
if [ -n "${USAGE}" ]
then
- Echo "${USAGE}"
- echo
+ printf "%s\n" "${USAGE}"
fi
- Echo " %s [-h|--help]" "${PROGRAM}"
- Echo " %s [-u|--usage]" "${PROGRAM}"
- Echo " %s [-v|--version]" "${PROGRAM}"
- echo
+ printf " %s [-h|--help]\n" "${PROGRAM}"
+ printf " %s [-u|--usage]\n" "${PROGRAM}"
+ printf " %s [-v|--version]\n\n" "${PROGRAM}"
if [ -n "${HELP}" ]
then
- Echo "${HELP}"
- echo
+ printf "%s\n\n" "${HELP}"
fi
- Echo "Report bugs to the Live Systems project <https://wiki.debian.org/DebianLive>."
+ echo "Report bugs to the Live Systems project <https://wiki.debian.org/DebianLive>."
exit 0
}
diff --git a/functions/usage.sh b/functions/usage.sh
index 86809ad53..038271107 100755
--- a/functions/usage.sh
+++ b/functions/usage.sh
@@ -10,22 +10,19 @@
Usage ()
{
- printf "%s - %s\n" "${PROGRAM}" "${DESCRIPTION}"
- echo
- Echo "Usage:"
- echo
+ printf "%s - %s\n\n" "${PROGRAM}" "${DESCRIPTION}"
+ printf "Usage:\n\n"
if [ -n "${USAGE}" ]
then
- Echo " ${USAGE}"
- echo
+ printf " %s\n" "${USAGE}"
fi
printf " %s [-h|--help]\n" "${PROGRAM}"
printf " %s [-u|--usage]\n" "${PROGRAM}"
printf " %s [-v|--version]\n" "${PROGRAM}"
- echo
- Echo "Try \"%s --help\" for more information." "${PROGRAM}"
+
+ printf "\nTry \"%s --help\" for more information.\n" "${PROGRAM}"
exit 1
}