2
## Copyright (C) 2004 Aaron Bentley
4
## See the file "COPYING" for further information about
5
## the copyright and warranty status of this work.
9
# executes the command ($* are the arguments after the command name)
12
options="library full"
14
if [ -n "$library" ]; then
15
catcmd="library-categories"
16
branchcmd="library-branches"
26
if [ -n "$full" ]; then
29
for cat in `tla $catcmd $1`; do
30
for package in $(tla $branchcmd $archive$cat); do
36
# one-liner description for aba help
39
aba_desc packages Lists all packages in the current archive
42
# short help for aba command -h, --help
46
usage: aba packages [archive]
48
--library search revision libraries instead of archives
49
--full show the full category name
51
List all the packages in the given archive. If no archive is given, uses the
57
# extended help for aba command -H or aba help command
64
# arch-tag: packages by Aaron Bentley (09:15 Feb 10 2004)