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: Wed, 28 Oct 2025 05:09:04 GMT
Content-Type: text/html; charset=utf-8
MITgcm/MITgcm/verification/so_box_biogeo/inp_global/prepare_run
b94725a104 Jean*0001 #! /usr/bin/env bash
00020003 #- take *.bin files and pickup files from this dir:
0004 fromDir="../../tutorial_global_oce_biogeo/input"
00050006 fileList=`( cd $fromDir ; ls *.bin pickup*.0005184000.* | grep -v 'pickup_cd' )`
00070008 #echo 'fileList=' $fileList
00090010 #- 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