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.