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

Annotation of /MITgcm_contrib/verification_other/global_oce_cs32/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:28:27 2017 UTC (8 years, 5 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 -6 lines
- remove now un-necessary mkdir call

1 gforget 1.6 #! /usr/bin/env bash
2 gforget 1.1
3 gforget 1.12 # $Header: /u/gcmpack/MITgcm_contrib/verification_other/global_oce_cs32/input/prepare_run,v 1.11 2017/03/01 22:29:03 jmc Exp $
4 jmc 1.11 # $Name: $
5    
6     dirList="../input ../input_fields ../core2_cnyf"
7 gforget 1.3
8 gforget 1.6 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 gforget 1.1

  ViewVC Help
Powered by ViewVC 1.1.22