Last change
on this file since 4112 was
3882,
checked in by musat, 4 years ago
|
Changements PATHS ciclad, runs.txt et sed HTML
Ajout possibilite acces simulations sur l espace "SE" dans cmor.sh
Ajout acces OBS a partir de l espace fabric multi_ZONE.sh
IM
|
-
Property svn:executable set to
*
|
File size:
853 bytes
|
Line | |
---|
1 | #!/bin/bash |
---|
2 | |
---|
3 | local=`pwd -P` |
---|
4 | login=`whoami` |
---|
5 | hostname=`hostname` |
---|
6 | if [ ${hostname:0:5} = cicla ] ; then |
---|
7 | DODSDIR=/thredds/ipsl |
---|
8 | HTML00=http://vesg.ipsl.upmc.fr/thredds/fileServer/IPSLFS/$login |
---|
9 | machine=ciclad |
---|
10 | fi |
---|
11 | if [ ${hostname:0:5} = camel ] ; then |
---|
12 | DODSDIR=/thredds/ipsl |
---|
13 | fi |
---|
14 | if [ ${hostname:0:5} = irene ] ; then |
---|
15 | DODSDIR= |
---|
16 | fi |
---|
17 | if [ ${hostname:0:5} = jean- ] ; then |
---|
18 | DODSDIR= |
---|
19 | fi |
---|
20 | |
---|
21 | |
---|
22 | echo '<h1 ALIGN=CENTER> Liste des séries de simulations préparatoires à CMIP6, LMDZ-Orchidee</h1> ' |
---|
23 | echo "<table>" |
---|
24 | echo "<H1>" |
---|
25 | |
---|
26 | |
---|
27 | i=1 |
---|
28 | for f in /thredds/ipsl/fabric/lmdz/MultiSimu/*/entete.html ; do |
---|
29 | sim=`echo $f | cut -d/ -f7` |
---|
30 | # A REFAIRE |
---|
31 | echo "<TD ALIGN=LEFT><A HREF=`echo $f | sed -e 's:/thredds/ipsl/:http\://vesg.ipsl.upmc.fr/thredds/fileServer/IPSLFS/:'`> $sim </A> </TD>" |
---|
32 | |
---|
33 | if [ $i = 8 ] ; then |
---|
34 | echo "<TR>" |
---|
35 | i=0 |
---|
36 | fi |
---|
37 | i=$(( $i + 1 )) |
---|
38 | |
---|
39 | done |
---|
40 | echo "</table>" |
---|
41 | echo "</H1>" |
---|
42 | |
---|
Note: See
TracBrowser
for help on using the repository browser.