source: BOL/Multi_atlas/html_all.sh @ 3684

Last change on this file since 3684 was 3684, checked in by idelkadi, 4 years ago

Repository under svn of a first version of Multiatlas diagnostics for LMDZ. This version is adapted to be able to run a LMDZ multiatlas on an individual account on the ciclad machine of the IPSL. In this version, the parts to be modified are identified so as to subsequently adapt it to other machines.
This version is still under development.

  • Property svn:executable set to *
File size: 885 bytes
Line 
1#!/bin/bash
2
3local=`pwd -P`
4login=`whoami`
5hostname=`hostname`
6if [ ${hostname:0:5} = cicla ] ; then
7DODSDIR=/prodigfs/ipslfs/dods
8HTML00=http://vesg.ipsl.upmc.fr/thredds/fileServer/IPSLFS/$login
9machine=ciclad
10fi
11if [ ${hostname:0:5} = camel ] ; then
12DODSDIR=/prodigfs/ipslfs/dods
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 /prodigfs/ipslfs/dods/fabric/lmdz/MultiSimu/*/entete.html ; do
29    sim=`echo $f | cut -d/ -f8`
30# A REFAIRE
31echo "<TD ALIGN=LEFT><A HREF=`echo $f | sed -e 's:/prodigfs/ipslfs/dods/: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.