#
#	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.

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

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

tmp=expand.out

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

for f in $*
do
	expand $f >$tmp
	mv $tmp $f
	normalize $f
	ci $f
done

