~tom-gall/live-build/integrate-linaro-media-create

« back to all changes in this revision

Viewing changes to functions/help.sh

  • Committer: Daniel Baumann
  • Date: 2011-03-09 17:18:28 UTC
  • Revision ID: git-v1:677415f6d7efc1e5b888570d70af311d2900c69c
Adding live-helper 1.0~a2-1.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
 
 
3
# help.sh - handle help information
 
4
 
 
5
Help ()
 
6
{
 
7
        echo "${PROGRAM} - ${DESCRIPTION}"
 
8
        echo
 
9
        echo "${USAGE}"
 
10
        echo "Usage: ${PROGRAM} [-h|--help]"
 
11
        echo "Usage: ${PROGRAM} [-u|--usage]"
 
12
        echo "Usage: ${PROGRAM} [-v|--version]"
 
13
        echo
 
14
        echo "${HELP}"
 
15
        echo
 
16
        echo "Report bugs to Debian Live project <http://debian-live.alioth.debian.org/>."
 
17
        exit 0
 
18
}