Back to home page

MITgcm

 
 

    


Warning, /verification/global_ocean.cs32x15/input_ad.seaice_dynmix/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
4f965a3884 Jean*0001 #! /usr/bin/env bash
                0002 
                0003 #- in order to save disc space, take files:
                0004 fileList=`(cd ../input.icedyn ; ls -1 *.bin pickup*)`
                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