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)
14
aba_panic "Not a project tree"
16
revision=$(aba_tree_revision)
18
aba_panic "Can't determine last revision"
20
location=$(tla library-find $revision)
22
if tla library-add $revision; then
23
location=$(tla library-find $revision)
25
aba_panic "Can't find library revision for $revision"
30
for i in $(tla inventory -s); do
31
if [ ! -f $owd/$i ]; then
38
# one-liner description for aba help
41
aba_desc $(basename $0) "Restores deleted files"
44
# short help for aba command -h, --help
48
Restores deleted files
49
usage: $abaname $(basename $0)
51
Makes fresh copies of all files that have been deleted since the last commit.
52
All other files are ignored.
56
# extended help for aba command -H or aba help command
64
# arch-tag: undelete by Aaron Bentley (09:55 Jun 18 2004)