#! /bin/csh # extall - C Shell script to extract all OASIS data for Jan 92 deployment # cd /oasis/jan92/raw ls oasis.d? ls oasis.d?? set day = 92076 while ( $day <= 92206 ) set i = 0 while ( $i < 15 ) set file = oasis.$day.$i if ( -e $file ) echo $file @ i++ end @ day++ end