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, 8 Sep 2026 05:09:20 GMT
Content-Type: text/html; charset=utf-8
MITgcm/MITgcm/verification/adjustment.cs-32x32x1/input/prepare_run
4e6d1b7026 Jean*0001 #! /usr/bin/env bash
00020003 #- in order to save disc space, take files:
0004 fileList="tile001.mitgrid tile002.mitgrid tile003.mitgrid tile004.mitgrid tile005.mitgrid tile006.mitgrid"
0005 #- from this dir:
0006 fromDir="../../aim.5l_cs/input"
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