1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
#!/bin/sh
# Copyright (C) 2004 Aaron Bentley
#
# See the file "COPYING" for further information about
# the copyright and warranty status of this work.
. "$abadir/aba-lib"
cmd_exec()
{
if [ -n "$1" ]; then
revision=$(aba_revision_or_version $1)
fi
tla changes --diffs $revision
}
cmd_desc()
{
echo ' diff : shortcut for tla changes --diff'
}
cmd_help()
{
echo "It's like the CVS command."
}
cmd_ext_help()
{
echo "Really."
}
aba_run "$@"
# arch-tag: diff by Aaron Bentley (12:16 Jan 15, 2004)
|