source:
branches/samba-3.2.x/source/script/revert.sh@
715
Last change on this file since 715 was 133, checked in by , 17 years ago | |
---|---|
File size: 270 bytes |
Line | |
---|---|
1 | #!/bin/sh |
2 | BINDIR=$1 |
3 | shift |
4 | |
5 | for p in $*; do |
6 | p2=`basename $p` |
7 | if [ -f $BINDIR/$p2.old ]; then |
8 | echo Restoring $BINDIR/$p2.old |
9 | mv $BINDIR/$p2 $BINDIR/$p2.new |
10 | mv $BINDIR/$p2.old $BINDIR/$p2 |
11 | rm -f $BINDIR/$p2.new |
12 | else |
13 | echo Not restoring $p |
14 | fi |
15 | done |
16 | |
17 | exit 0 |
18 |
Note:
See TracBrowser
for help on using the repository browser.