1
0
mirror of https://github.com/samba-team/samba.git synced 2025-12-10 04:23:50 +03:00
Files
samba-mirror/source/script/revert.sh

16 lines
228 B
Bash
Executable File

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