~abentley/bzrtools/bzrtools.dev

147.1.3 by Robert Collins
test and deliver basic pending-merges into bzr so that merging is recorded
1
#! /bin/sh
2
## Copyright (C) 2004 Aaron Bentley
3
##
4
## See the file "COPYING" for further information about
5
## the copyright and warranty status of this work.
6
7
. "$abadir/aba-lib"
8
9
# executes the command ("$@" are the arguments after the command name)
10
cmd_exec()
11
{
12
}
13
14
# one-liner description for aba help
15
cmd_desc()
16
{
17
    aba_desc $(basename $0) "description"
18
}
19
20
# short help for aba command -h, --help
21
cmd_help()
22
{
23
    cat <<EOH
24
Description...
25
usage: $abaname $(basename $0) [OPTIONS]
26
27
    -d,--dir	Change to DIR first.
28
EOH
29
}
30
31
# extended help for aba command -H or aba help command
32
cmd_ext_help()
33
{
34
    cat <<EOH
35
EOH
36
}	
37
38
aba_run "$@"
39
# arch-tag: skel-command by Aaron Bentley (13:13 Feb 4, 2004)