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, 19 Dec 2025 06:09:19 GMT
Content-Type: text/html; charset=utf-8
MITgcm/MITgcm/verification/lab_sea/input.longstep/prepare_run
0c90ef582a Jean*0001 #! /usr/bin/env bash
0002871ac80009 Jean*0003 #- In order to save disc space, take binary input files
0c90ef582a Jean*0004 #- from this dir:
0005 fromDir="../input.natl_box"
00060007 fileList=`( cd $fromDir ; echo kf_* POLY3.COEFFS data.kpp )`
00080009 #echo 'fileList=' $fileList
00100011 #- and do a symbolic link in the current directory
0012 # (if the file does not already exist)
0013 if test -d $fromDir ; then
0014 lnkList='files:'
0015 for xx in $fileList
0016 do
0017 if test -r ${fromDir}/$xx ; then
0018 if test ! -r $xx ; then
0019 lnkList=${lnkList}" "$xx
0020 ln -sf ${fromDir}/$xx .
0021 fi
0022 fi
0023 done
0024 echo ' link' $lnkList "from dir:" $fromDir
0025 else
0026 echo " Error:" $fromDir "not a directory"
0027 fi