Warning, /verification/global_ocean.cs32x15/input.in_p/prepare_run is written in an unsupported language. File is not indexed.
view on githubraw file Latest commit 0320e252 on 2021-08-11 16:08:52 UTC
0320e25227 Mart*0001 #! /usr/bin/env bash
0002
0003 #- in order to save disc space, take files:
0004 fileList=`(cd ../input.icedyn ; ls -1 *.bin)`
0005
0006 #- from this dir:
0007 fromDir="../input.icedyn"
0008
0009 #- and do a symbolic link in the current directory
0010 # (if the file does not already exist)
0011 if test -d $fromDir ; then
0012 lnkList='files:'
0013 for xx in $fileList
0014 do
0015 if test -r ${fromDir}/$xx ; then
0016 if test ! -r $xx ; then
0017 lnkList=${lnkList}" "$xx
0018 ln -sf ${fromDir}/$xx .
0019 fi
0020 fi
0021 done
0022 echo ' link' $lnkList "from dir:" $fromDir
0023 else
0024 echo " Error:" $fromDir "not a directory"
0025 fi
0026
0027 #- in order to save disc space, take files:
0028 fileList=`(cd ../input.seaice ; ls -1 *.bin data.*)`
0029
0030 #- from this dir:
0031 fromDir="../input.seaice"
0032
0033 #- and do a symbolic link in the current directory
0034 # (if the file does not already exist)
0035 if test -d $fromDir ; then
0036 lnkList='files:'
0037 for xx in $fileList
0038 do
0039 if test -r ${fromDir}/$xx ; then
0040 if test ! -r $xx ; then
0041 lnkList=${lnkList}" "$xx
0042 ln -sf ${fromDir}/$xx .
0043 fi
0044 fi
0045 done
0046 echo ' link' $lnkList "from dir:" $fromDir
0047 else
0048 echo " Error:" $fromDir "not a directory"
0049 fi