#!/bin/csh set cfgpath = /oasis.old/users/brian/mooring/eqpac/cfg set start = 1 set end = 9 set n = $start set can = ep1 set dstpath = /oasis.old/users/brian/mooring/eqpac/ep1/raw #============================================ # Move 199811 deployment data and extract it #============================================ set srcpath = /oasis/eqpac/deployments/199811/raw set name = ep1.19990708 set file = $srcpath/$name echo moving::::: $file cp $file $dstpath/ echo extracting: $dstpath/$name nice /oasis/bin/extract -b -y 1 -i specprr -c $cfgpath/$can.cfg $dstpath/$name echo removing::: $dstpath/$name rm -f $dstpath/$name set name = ep1.19991027 set file = $srcpath/$name echo moving::::: $file cp $file $dstpath/ echo extracting: $dstpath/$name nice /oasis/bin/extract -b -y 1 -i specprr -c $cfgpath/$can.cfg $dstpath/$name echo removing::: $dstpath/$name rm -f $dstpath/$name