live-build/functions/help.sh

37 lines
727 B
Bash
Raw Normal View History

2007-09-23 08:04:47 +00:00
#!/bin/sh
## live-build(7) - System Build Scripts
## Copyright (C) 2006-2013 Daniel Baumann <mail@daniel-baumann.ch>
##
## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
## This is free software, and you are welcome to redistribute it
## under certain conditions; see COPYING for details.
2007-09-23 08:04:48 +00:00
2007-09-23 08:04:47 +00:00
Help ()
{
Echo "%s - %s" "${PROGRAM}" "${DESCRIPTION}"
2007-09-23 08:04:47 +00:00
echo
Echo "Usage:"
2007-09-23 08:04:47 +00:00
echo
2007-09-23 08:04:48 +00:00
if [ -n "${USAGE}" ]
then
Echo "${USAGE}"
2007-09-23 08:04:48 +00:00
echo
fi
Echo " %s [-h|--help]" "${PROGRAM}"
Echo " %s [-u|--usage]" "${PROGRAM}"
Echo " %s [-v|--version]" "${PROGRAM}"
2007-09-23 08:04:47 +00:00
echo
2007-09-23 08:04:48 +00:00
if [ -n "${HELP}" ]
then
Echo "${HELP}"
2007-09-23 08:04:48 +00:00
echo
fi
Echo "Report bugs to Debian Live project <http://live.debian.net/>."
2007-09-23 08:04:47 +00:00
exit 0
}