1 |
gforget |
1.1 |
#!/bin/csh -f |
2 |
|
|
# |
3 |
gforget |
1.3 |
|
4 |
|
|
mkdir global_oce_tmp_download |
5 |
|
|
cd global_oce_tmp_download |
6 |
|
|
|
7 |
gforget |
1.1 |
#1) from MITgcm/verification, get global_oce_cs32 and |
8 |
|
|
# global_oce_llc90 using cvs checkout, as |
9 |
gforget |
1.3 |
cvs co MITgcm_contrib/gael/verification/global_oce_cs32 |
10 |
|
|
cvs co MITgcm_contrib/gael/verification/global_oce_llc90 |
11 |
|
|
|
12 |
|
|
mv MITgcm_contrib/gael/verification/global_oce_cs32 . |
13 |
|
|
mv MITgcm_contrib/gael/verification/global_oce_llc90 . |
14 |
gforget |
1.1 |
|
15 |
gforget |
1.3 |
#2) get the input binary files for cs32 |
16 |
|
|
wget http://mitgcm.org/~gforget/global_oce_input_fields.tar.gz |
17 |
|
|
gunzip global_oce_input_fields.tar.gz |
18 |
|
|
tar xf global_oce_input_fields.tar |
19 |
|
|
\rm -f global_oce_input_fields.tar |
20 |
|
|
|
21 |
|
|
#3) link code to code_ad (as testreport expects code_ad to exist) |
22 |
|
|
cd global_oce_llc90 |
23 |
|
|
ln -s code code_ad |
24 |
|
|
cd .. |
25 |
gforget |
1.1 |
cd global_oce_cs32 |
26 |
|
|
ln -s code code_ad |
27 |
|
|
cd .. |
28 |
|
|
|
29 |
gforget |
1.2 |
cd .. |
30 |
gforget |
1.1 |
|