#! /bin/sh
#
#
echo '#!/bin/sh'
echo '#This is a sh archive. Unwrap it by typing csh file'
for i in $*
do
	echo "echo $i"
	echo "cat > $i << 'End-of-$i'"
	cat $i
	echo "End-of-$i"
	echo "chmod 555 $i"
done
echo 'rm -i $0'
