source: BOL/Multi_atlas/html_all.sh @ 4221

Last change on this file since 4221 was 3882, checked in by musat, 3 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
3local=`pwd -P`
4login=`whoami`
5hostname=`hostname`
6if [ ${hostname:0:5} = cicla ] ; then
7DODSDIR=/thredds/ipsl
8HTML00=http://vesg.ipsl.upmc.fr/thredds/fileServer/IPSLFS/$login
9machine=ciclad
10fi
11if [ ${hostname:0:5} = camel ] ; then
12DODSDIR=/thredds/ipsl
13fi
14if [ ${hostname:0:5} = irene ] ; then
15DODSDIR=
16fi
17if [ ${hostname:0:5} = jean- ] ; then
18DODSDIR=
19fi
20
21
22      echo '<h1 ALIGN=CENTER> Liste des séries de simulations préparatoires à CMIP6, LMDZ-Orchidee</h1> '
23echo "<table>"
24echo "<H1>"
25
26
27i=1
28for f in /thredds/ipsl/fabric/lmdz/MultiSimu/*/entete.html ; do
29    sim=`echo $f | cut -d/ -f7`
30# A REFAIRE
31echo "<TD ALIGN=LEFT><A HREF=`echo $f | sed -e 's:/thredds/ipsl/:http\://vesg.ipsl.upmc.fr/thredds/fileServer/IPSLFS/:'`> $sim </A> </TD>"
32
33if [ $i = 8 ] ; then
34echo "<TR>"
35i=0
36fi
37i=$(( $i + 1 ))
38
39done
40echo "</table>"
41echo "</H1>"
42
Note: See TracBrowser for help on using the repository browser.