mirror of
https://github.com/samba-team/samba.git
synced 2024-12-24 21:34:56 +03:00
16 lines
228 B
Bash
16 lines
228 B
Bash
|
#!/bin/sh
|
||
|
BINDIR=$1
|
||
|
shift
|
||
|
|
||
|
for p in $*; do
|
||
|
if [ -f $BINDIR/$p.old ]; then
|
||
|
echo Restoring $BINDIR/$p.old as $BINDIR/$p
|
||
|
mv $BINDIR/$p $BINDIR/$p.new
|
||
|
mv $BINDIR/$p.old $BINDIR/$p
|
||
|
rm -f $BINDIR/$p.new
|
||
|
fi
|
||
|
done
|
||
|
|
||
|
exit 0
|
||
|
|