#!/bin/csh -f

while ($#argv)
set i=$argv[1]
echo Copying $i
cp $i faa
cp $i ../GAME/$i
cp $i ../MIRROR/$i
cp $i ../BLITZ/$i
shift
end
