#! /bin/csh
# process - C Shell script to remove processed OASIS data 
#		and reprocess it all
#

set oasis = /oasis
set nonomatch

set mooring = m3

foreach name (adcp ctd gf gps metsys nitrate oasis pco2 satlantic tstring)
	cd $oasis/$mooring/$name
	foreach file (99*)
	    mv $file '19'$file
	end
end
