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:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1994-08-02
|
270 b
|
14 lines
#! /bin/csh
#
# Delrcs Delete all the files that exist in RCS.
#
#------------------------------------------------------------------------
foreach file ( RCS/* )
set base = `basename $file ,v`
if ( -e $base) then
echo Deleting $base
rm -f $base
endif
end