head	1.2;
access;
symbols;
locks; strict;
comment	@# @;


1.2
date	90.07.20.15.10.56;	author claire;	state Exp;
branches;
next	1.1;

1.1
date	90.07.20.15.07.22;	author claire;	state Exp;
branches;
next	;


desc
@Checks to see if any new reference manual pages have been checked in
since last checkout.
@


1.2
log
@Fixed bugs.
@
text
@#!/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
@


1.1
log
@Initial revision
@
text
@d6 1
a6 1
SRCDIRS="*"
d11 1
a11 1
	if [ -d $i]
d13 1
a13 1
		chdir $i
@
