#! /bin/ksh
SRCDIR=/n/mammal/0/perlman/src/ss
DESTDIR=$PWD
if cd $SRCDIR
then
	for i in *.[chy] makefile *.[13]
	do
		if test $i -nt $DESTDIR/$i
		then
			echo "Getting: $i"
			/bin/cp $SRCDIR/$i $DESTDIR/$i
		fi
	done
fi
