/[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.9 - (hide annotations) (download)
Sun May 29 12:39:19 2016 UTC (9 years, 2 months ago) by gforget
Branch: MAIN
CVS Tags: checkpoint65y
Changes since 1.8: +1 -1 lines
- add files that were previously linked from global_oce_llc90
- prepare_run: omit linking files from global_oce_llc90

1 gforget 1.6 #! /usr/bin/env bash
2 gforget 1.1
3 gforget 1.9 dirList="../input/ ../input_fields/"
4 gforget 1.3
5 gforget 1.6 for fromDir in $dirList
6     do
7    
8     #- and do a symbolic link in the current directory
9     # (if the file does not already exist)
10     if test -d $fromDir ; then
11     fileList=`( cd $fromDir ; ls -1 )`
12     lnkList='files:'
13     for xx in $fileList
14     do
15     if test -r ${fromDir}/$xx ; then
16     if test ! -r $xx ; then
17     lnkList=${lnkList}" "$xx
18     ln -sf ${fromDir}/$xx .
19     fi
20     fi
21     done
22     echo ' link' $lnkList "from dir:" $fromDir
23     else
24     echo " Error:" $fromDir "not a directory"
25     fi
26     done
27 gforget 1.1
28 gforget 1.7 if test ! -d "diags" ; then
29     mkdir diags
30     mkdir tapes
31     fi
32    

  ViewVC Help
Powered by ViewVC 1.1.22