home *** CD-ROM | disk | FTP | other *** search
/ SGI Developer Toolbox 6.1 / SGI Developer Toolbox 6.1 - Disc 4.iso / src / exampleCode / irix / scripts / rcs / Delrcs < prev    next >
Encoding:
Text File  |  1994-08-02  |  270 b   |  14 lines

  1. #! /bin/csh
  2. #
  3. # Delrcs    Delete all the files that exist in RCS.
  4. #
  5. #------------------------------------------------------------------------
  6.  
  7. foreach file ( RCS/* )
  8.     set base = `basename $file ,v`
  9.     if ( -e $base) then
  10.     echo Deleting $base
  11.     rm -f $base
  12.     endif
  13. end
  14.