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

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

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


Revision 1.4 - (hide annotations) (download)
Wed Mar 1 22:38:10 2017 UTC (7 years, 3 months ago) by jmc
Branch: MAIN
CVS Tags: checkpoint66f, checkpoint66e, checkpoint66g, checkpoint67a, checkpoint67b, checkpoint67d, checkpoint66o, checkpoint66n, checkpoint66m, checkpoint66l, checkpoint66k, checkpoint66j, checkpoint66i, checkpoint66h, HEAD
Changes since 1.3: +4 -3 lines
simplify: no need to run "../input/prepare_run" when using standard sequence
 of instructions (like in testreport)

1 gforget 1.1 #! /usr/bin/env bash
2    
3 jmc 1.4 # $Header: $
4     # $Name: $
5    
6     dirList="../input.ecco_v4 ../input_verifs/ecmwf ../input_verifs/ecco_v4"
7 gforget 1.1
8     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