#! /bin/sh

if test ! -d SCCS ; \
then \
	mkdir SCCS ; \
fi

for FILE
do
echo ${FILE}
ed ${FILE} <<!
1i
/* %M%	%I%	(CARL)	%G%	%U% */

.
w
q
!
chmod a-w ${FILE}
sccs admin -fi -y"original version" -i"${FILE}" "${FILE}"
sccs get ${FILE}
done
