#! /bin/csh -f
#
foreach i ($argv) 
  echo "moving $i:r.c to $i:r.cc"
  mv $i:r.c  $i:r.cc
end

