~abentley/bzrtools/bzrtools.dev

« back to all changes in this revision

Viewing changes to fai/aba/commands/missing-from

  • Committer: Robert Collins
  • Date: 2005-09-14 11:27:20 UTC
  • mto: (147.2.6) (364.1.3 bzrtools)
  • mto: This revision was merged to the branch mainline in revision 324.
  • Revision ID: robertc@robertcollins.net-20050914112720-c66a21de86eafa6e
trim fai cribbage

Show diffs side-by-side

added added

removed removed

Lines of Context:
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
 
    ver=$2
13
 
    if [ -z $2 ]; then
14
 
      ver=$(tla tree-version)
15
 
    fi
16
 
 
17
 
    dir=$(tla library-find $1)
18
 
    tla missing -s -d $dir $ver
19
 
}
20
 
 
21
 
# one-liner description for aba help
22
 
cmd_desc()
23
 
{
24
 
    aba_desc $(basename $0) "Inverted version of missing"
25
 
}
26
 
 
27
 
# short help for aba command -h, --help
28
 
cmd_help()
29
 
{
30
 
    cat <<EOH
31
 
Inverted version of missing
32
 
usage: $abaname $(basename $0) REVISION [VERSION]
33
 
 
34
 
Shows which revisions of VERSION are missing from REVISION.  Version defaults
35
 
to the current tree-version.
36
 
 
37
 
EOH
38
 
}
39
 
 
40
 
# extended help for aba command -H or aba help command
41
 
cmd_ext_help()
42
 
{
43
 
    cat <<EOH
44
 
EOH
45
 
}       
46
 
 
47
 
aba_run "$@"
48
 
#  arch-tag: missing-from by Aaron Bentley  (23:04 Jun 04 2004)