#!/bin/csh #Brian Schlinig #cleanup_m1_199803 set startdate = 9826 set endate = 9837 set date = $startdate set can = m1 set filepath = /oasis/may97/raw while($date < $endate) foreach file ($filepath/$can.$date*) rm $file end @ date ++ end set startdate = 9900 set endate = 9931 set date = $startdate set can = m1 set filepath = /oasis/may97/raw while($date < $endate) foreach file ($filepath/$can.$date*) rm $file end @ date ++ end