home *** CD-ROM | disk | FTP | other *** search
/ Complete Linux / Complete Linux.iso / docs / apps / database / postgres / postgre2.z / postgre2 / ref / newrefpages < prev    next >
Encoding:
Text File  |  1992-08-27  |  283 b   |  25 lines

  1. #!/bin/sh
  2. #
  3. #    newrefpages -- find new RCS files in reference manual tree
  4. #
  5.  
  6. SRCDIRS="`pwd` `pwd`/*"
  7. flags="-n"
  8.  
  9. for i in $SRCDIRS
  10. do
  11.     if [ -d $i ]
  12.     then
  13.         cd $i
  14.         if [ -d RCS ]
  15.         then
  16.             echo \*\*\* $i
  17.             f=`rcsnew $flags`
  18.             for j in $f
  19.             do
  20.                 echo \-\- $j
  21.             done
  22.         fi
  23.     fi
  24. done
  25.