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

