Warning, /verification/global_ocean.cs32x15/input/prepare_run is written in an unsupported language. File is not indexed.
view on githubraw file Latest commit add29e06 on 2018-01-31 20:35:05 UTC
655b35d5dd Jean*0001 #! /usr/bin/env bash
0002
0003 #- in order to save disc space, take files:
0004 fileList="grid_cs32.face001.bin grid_cs32.face002.bin grid_cs32.face003.bin grid_cs32.face004.bin grid_cs32.face005.bin grid_cs32.face006.bin"
0005
0006 #- from this dir:
0007 fromDir="../../tutorial_held_suarez_cs/input"
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