#! /bin/csh # temp - C Shell script to display OASIS temperature rise from ambient # set can = 'm1' if ($#argv > 0) set can = $1 cd /usr/local/oasis/$can/atlas foreach file (9*) if ( -e ../oasis/$file ) then /users/hebo/bin/omerge $file ../oasis/$file 3 | \ awk '{printf("%9.5f %6.3f\n", $1, $23 - $3);}' - endif end