/[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.11 - (hide annotations) (download)
Wed Mar 1 22:37:00 2017 UTC (8 years, 4 months ago) by jmc
Branch: MAIN
Changes since 1.10: +6 -4 lines
simplify: use shorter dir names

1 gforget 1.5 #! /usr/bin/env bash
2 gforget 1.1
3 jmc 1.11 # $Header: $
4     # $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    
31     if test ! -d "diags" ; then
32 jmc 1.11 mkdir diags
33     mkdir tapes
34 gforget 1.5 fi

  ViewVC Help
Powered by ViewVC 1.1.22