head	1.1;
access;
symbols;
locks;
comment	@# @;


1.1
date	2013.10.13.19.11.34;	author strandwg;	state Exp;
branches;
next	;


desc
@@


1.1
log
@Initial revision
@
text
@#!/bin/csh -f
#
set case = b40.rcp8.5.2300ext
#
ln -s -f /datalocal/ccpb/CCSM/csm/b40.1850.track1.1deg.006/ocn/b40.1850.track1.1deg.006.pop.h.0800-ave-1299.nc .
#
foreach i ( `ls ${case}.pop.h.*.*.nc | cut -d"." -f8 | sort | uniq` )
  echo "singlevar" > SLC.${case}
  echo "b40.1850.track1.1deg.006.pop.h.0800-ave-1299.nc" >> SLC.${case}
  /bin/ls -1 ${case}.pop.h.{RHO,SALT,SSH,TEMP}.${i}.nc >> SLC.${case}
  /bin/ls -1 ${case}.pop.h.{SALT,TEMP,UVEL,VVEL}.${i}.nc > THRU.${case}
  /bin/ls -1 ${case}.pop.h.{PD,QFLUX,SALT,SFWF,SHF,SSH,TEMP}.${i}.nc > ZONAL.${case}
end
#
exit
@
