home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Complete Linux
/
Complete Linux.iso
/
docs
/
apps
/
database
/
postgres
/
postgre2.z
/
postgre2
/
ref
/
newrefpages
< 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
|
1992-08-27
|
283 b
|
25 lines
#!/bin/sh
#
# newrefpages -- find new RCS files in reference manual tree
#
SRCDIRS="`pwd` `pwd`/*"
flags="-n"
for i in $SRCDIRS
do
if [ -d $i ]
then
cd $i
if [ -d RCS ]
then
echo \*\*\* $i
f=`rcsnew $flags`
for j in $f
do
echo \-\- $j
done
fi
fi
done