#! /bin/csh
# par - C Shell script to display current PAR values
#
set oasis = /oasis
set file = `date +%y%j`


cd $oasis/m1/par
if ( -e $file ) then
	echo "M1A"
	tail -12l $file
endif

cd $oasis/m2/par
if ( -e $file ) then
	echo "M2"
	tail -12l $file
endif
