#
#	Script to install paws source files into RCS.
#	Sets up strict locking and proper access lists.
#	Also makes sure the file has the proper owner
#	and group.
#       Added dew and jwh to access list; removed larry. SFB 8/31/88

PATH=/src/paws/bin:$PATH
export PATH

Usage="Usage: $0 file ... \n"

logins="paws,bayes,jws,quist,dew,jwh"

txtfile=/src/paws/bin/rcsbasetxt
tmp=expand.out

if [ $# -lt 1 ]
then
	echo $Usage
	exit 1
fi

for f in $*
do
	expand $f >$tmp
	mv -f $tmp $f
	normalize $f
	ci -stmp -t$txtfile $f
	rcs -L -a$logins $f
#        chown paws RCS/`basename $f`,v
done

