/[MITgcm]/MITgcm_contrib/verification_other/global_oce_llc90/input/prepare_run
ViewVC logotype

Annotation of /MITgcm_contrib/verification_other/global_oce_llc90/input/prepare_run

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.12 - (hide annotations) (download)
Fri Mar 3 17:40:10 2017 UTC (8 years, 4 months ago) by gforget
Branch: MAIN
CVS Tags: checkpoint66g, checkpoint66f, checkpoint66e, checkpoint66o, checkpoint66n, checkpoint66m, checkpoint66l, checkpoint66k, checkpoint66j, checkpoint66i, checkpoint66h, checkpoint67a, checkpoint67b, checkpoint67d, HEAD
Changes since 1.11: +1 -5 lines
- data.exf: remove un-necessary exf_yftype specification
- eedata: replace '/' with '&'
- data.diagnostics: specify output directory as diagMdsDir='diags'
- data.exch2: add other balank tile list options
- prepare_run: remove now un-necessary mkdir call

1 gforget 1.5 #! /usr/bin/env bash
2 gforget 1.1
3 gforget 1.12 # $Header: /u/gcmpack/MITgcm_contrib/verification_other/global_oce_llc90/input/prepare_run,v 1.11 2017/03/01 22:37:00 jmc Exp $
4 jmc 1.11 # $Name: $
5    
6     dirList="../input ../input_fields ../input_verifs/llc90 ../input_verifs/llc90_fields ../input_verifs/llc90_runoff ../input_verifs/core2_cnyf"
7 gforget 1.1
8 gforget 1.5 for fromDir in $dirList
9     do
10    
11     #- and do a symbolic link in the current directory
12     # (if the file does not already exist)
13     if test -d $fromDir ; then
14     fileList=`( cd $fromDir ; ls -1 )`
15     lnkList='files:'
16     for xx in $fileList
17     do
18     if test -r ${fromDir}/$xx ; then
19     if test ! -r $xx ; then
20     lnkList=${lnkList}" "$xx
21     ln -sf ${fromDir}/$xx .
22     fi
23     fi
24     done
25     echo ' link' $lnkList "from dir:" $fromDir
26     else
27     echo " Error:" $fromDir "not a directory"
28     fi
29     done
30    

  ViewVC Help
Powered by ViewVC 1.1.22