#! /bin/csh # temp - C Shell script to display OASIS temperature rise from ambient # set can = 'm1' set day = `date +%y%j` cd /usr/local/oasis if ($#argv > 0) set can = $1 if ($#argv > 1) set day = $2 /users/hebo/bin/omerge $can/atlas/$day $can/oasis/$day 3 | \ awk '{printf("%9.5f %6.3f\n", $1, $23 - $3);}' -