#! /bin/sh
for i
do
	echo "if test -e $i; then echo Overwriting $i; else echo Extracting $i; fi"
    echo "cat > $i << 'End of $i'"
    cat $i
    echo End of $i
	if test -x $i
	then
		echo "chmod +x $i"
	fi
done

