Back to home page

MITgcm

 
 

    


Warning, /verification/front_relax/input.bvp/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
c4626ecb6e Jean*0001 #! /usr/bin/env bash
                0002 
                0003 #- in order to save disc space, take files:
                0004 fileList=`(cd ../input.mxl ; ls -1 *.bin )`
                0005 
                0006 #- from this dir:
                0007 fromDir="../input.mxl"
                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