source: BOL/Multi_atlas/html_all.sh @ 4311

Last change on this file since 4311 was 4307, checked in by musat, 20 months ago

Fusion entre la version commune (compte fabric) et la version perso
du multi-atlas incluant

  • la fiabilisation de la realisation des cartes
  • la correction des coupes (latitude,altitude) pour les biais
  • l'ajout d'une option pour des multi-atlas par rapport a une simulation de reference
  • l'ajout d'options pour un multi-atlas regional
  • la mise a jour des thredds (repertoire & html) pour ciclad

IonelaMusat?

  • Property svn:executable set to *
File size: 1.0 KB
Line 
1#!/bin/bash
2
3local=`pwd -P`
4login=`whoami`
5hostname=`hostname`
6if [ ${hostname:0:5} = cicla ] ; then
7DODSDIR=/thredds/ipsl
8dthredds=thredds-su.ipsl.fr/thredds/fileServer/ipsl_thredds
9HTML00=http://${dthredds}/$login
10machine=ciclad
11fi
12if [ ${hostname:0:5} = spiri ] ; then
13DODSDIR=/thredds/ipsl
14dthredds=thredds-su.ipsl.fr/thredds/fileServer/ipsl_thredds
15HTML00=http://${dthredds}/$login
16machine=spirit
17fi
18if [ ${hostname:0:5} = camel ] ; then
19DODSDIR=/thredds/ipsl
20fi
21if [ ${hostname:0:5} = irene ] ; then
22DODSDIR=
23fi
24if [ ${hostname:0:5} = jean- ] ; then
25DODSDIR=
26fi
27
28
29      echo '<h1 ALIGN=CENTER> Liste des séries de simulations préparatoires à CMIP6, LMDZ-Orchidee</h1> '
30echo "<table>"
31echo "<H1>"
32
33
34i=1
35for f in $DODSDIR/${login}/lmdz/MultiSimu/*/entete.html ; do
36    sim=`echo $f | cut -d/ -f7`
37# A REFAIRE
38echo "<TD ALIGN=LEFT><A HREF=`echo $f | sed -e 's:/thredds/ipsl/:http\://thredds-su.ipsl.fr/thredds/fileServer/ipsl_thredds/:'`> $sim </A> </TD>"
39
40if [ $i = 8 ] ; then
41echo "<TR>"
42i=0
43fi
44i=$(( $i + 1 ))
45
46done
47echo "</table>"
48echo "</H1>"
49
Note: See TracBrowser for help on using the repository browser.