#! /bin/csh
# change the policy in all the scenarios 

foreach i (*.l)
sed -e "s/sch_policy = $1/sch_policy = $2/" < $i  >! tmp
mv tmp $i
end
