1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-24 21:34:56 +03:00
samba-mirror/source3/script/revert.sh

16 lines
228 B
Bash
Raw Normal View History

#!/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