#!/bin/csh -f

while ($#argv)
set i=$argv[1]
echo Copying $i
cp $i ../EMP.TEST/$i
cp $i ../E.tmp/$i
cp $i ../GAME/$i
cp $i ../MIRROR/$i
shift
end
