home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / unix / volume25 / finger / part01 / ORIG < prev    next >
Encoding:
Text File  |  1992-04-03  |  158 b   |  10 lines

  1. #!/bin/sh
  2. # $Id: ORIG,v 3.0 90/07/06 13:10:15 budd Rel $
  3. if [ -f $1.orig ]; then
  4.     echo $1.orig exists 1>&2
  5.     exit 1
  6. fi
  7. mv $1 $1.orig
  8. cp $1.orig $1
  9. chmod +w $1
  10.