#!/bin/csh  -f
foreach arg ($*)
echo "converting " $arg
sed s/atime/ccm_time/g $arg > tmp
diff tmp $arg
mv tmp $arg
end

