1 |
#! /usr/bin/env bash |
2 |
|
3 |
# $Header: /u/gcmpack/MITgcm_contrib/verification_other/global_oce_cs32/input/prepare_run,v 1.11 2017/03/01 22:29:03 jmc Exp $ |
4 |
# $Name: $ |
5 |
|
6 |
dirList="../input ../input_fields ../core2_cnyf" |
7 |
|
8 |
for fromDir in $dirList |
9 |
do |
10 |
|
11 |
#- and do a symbolic link in the current directory |
12 |
# (if the file does not already exist) |
13 |
if test -d $fromDir ; then |
14 |
fileList=`( cd $fromDir ; ls -1 )` |
15 |
lnkList='files:' |
16 |
for xx in $fileList |
17 |
do |
18 |
if test -r ${fromDir}/$xx ; then |
19 |
if test ! -r $xx ; then |
20 |
lnkList=${lnkList}" "$xx |
21 |
ln -sf ${fromDir}/$xx . |
22 |
fi |
23 |
fi |
24 |
done |
25 |
echo ' link' $lnkList "from dir:" $fromDir |
26 |
else |
27 |
echo " Error:" $fromDir "not a directory" |
28 |
fi |
29 |
done |