ftp.nice.ch/pub/next/unix/network/system/samba.1.9.18p10.3.s.tar.gz#/samba-1.9.18p10/source/revert.sh

This is revert.sh in view mode; [Download] [Up]

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

These are the contents of the former NiCE NeXT User Group NeXTSTEP/OpenStep software archive, currently hosted by Netfuture.ch.