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: Sat, 20 Feb 2026 06:09:24 GMT
Content-Type: text/html; charset=utf-8
MITgcm/MITgcm/verification/offline_exf_seaice/input.dyn_ellnnfr/prepare_run
c512e371cc drin*0001 #! /usr/bin/env bash
00020003 #- from this dir:
0004 fromDir="../input.dyn_lsr"
00050006 #- in order to save disc space, take files:
0007 fileList=`(cd ${fromDir} ; ls -1 data* tr_checklist )`
00080009 #- from this dir:
0010 #- and do a symbolic link in the current directory
0011 # (if the file does not already exist)
0012 if test -d $fromDir ; then
0013 lnkList='files:'
0014 for xx in $fileList
0015 do
0016 if test -r ${fromDir}/$xx ; then
0017 if test ! -r $xx ; then
0018 lnkList=${lnkList}" "$xx
0019 ln -sf ${fromDir}/$xx .
0020 fi
0021 fi
0022 done
0023 echo ' link' $lnkList "from dir:" $fromDir
0024 else
0025 echo " Error:" $fromDir "not a directory"
0026 fi
0027