head     1.2;
access   ;
symbols  ;
locks    oasisa:1.2; strict;
comment  @# @;


1.2
date     2000.03.08.09.44.22;  author oasisa;  state Exp;
branches ;
next     1.1;

1.1
date     99.08.14.21.46.33;  author oasisa;  state Exp;
branches ;
next     ;


desc
@Shell that collects the mooring data
@


1.2
log
@As found today
T3
@
text
@#! /bin/csh
# getmoor - Shell script to download data from OASIS moorings at M1 and M2
#	    and extract the data
#

set oasis = /oasis
set nonomatch

$oasis/bin/getm1
$oasis/bin/m1 >/tmp/m1.out

$oasis/bin/getm2
$oasis/bin/m2 >/tmp/m2.out

# For testing of new M1/M2 in Lab.  Remove or comment out when done testing!!!
#$oasis/bin/getm1t
#$oasis/bin/getm2t
@


1.1
log
@Initial revision
@
text
@d15 2
a16 7
set hour = `date +%H`

if ( ($hour <= 6) || ($hour >= 20) ) then
    $oasis/bin/getm3
endif

# For testing of new M2 in Lab.  Remove or comment out when done testing!!!
@
