Issuing rollback() due to DESTROY without explicit disconnect() of DBD::mysql::db handle dbname=MITgcm at /usr/local/share/lxr/lib/LXR/Common.pm line 1224.
Last-Modified: Fri, 31 Oct 2024 05:11:45 GMT
Content-Type: text/html; charset=utf-8
MITgcm/MITgcm/verification/bottom_ctrl_5x5/input_ad/prepare_run
11c3150c71 Mart*0001 #! /usr/bin/env bash
00020003 #- Use file 'ones_64b.bin' from this dir:
0004 fromDir="../../isomip/input_ad"
00050006 fileList='ones_64b.bin'
00070008 #- and do a symbolic link in the current directory
0009 # (if the file does not already exist)
0010 if test -d $fromDir ; then
0011 lnkList='files:'
0012 for xx in $fileList
0013 do
0014 if test -r ${fromDir}/$xx ; then
0015 if test ! -r $xx ; then
0016 lnkList=${lnkList}" "$xx
0017 ln -sf ${fromDir}/$xx .
0018 fi
0019 fi
0020 done
0021 echo ' link' $lnkList "from dir:" $fromDir
0022 else
0023 echo " Error:" $fromDir "not a directory"
0024 fi