source: BOL/Multi_atlas/webpage_multi.sh @ 4331

Last change on this file since 4331 was 4307, checked in by musat, 2 years 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.3 KB
Line 
1#!/bin/bash
2
3#set -v
4# Definition des coleurs d'affichage
5noir='\e[0;30m' gris='\e[1;30m' rougefonce='\e[0;31m' rose='\e[1;31m' vertfonce='\e[0;32m' vertclair='\e[1;32m' orange='\e[0;33m' jaune='\e[1;33m' bleufonce='\e[0;34m' bleuclair='\e[1;34m' violetfonce='\e[0;35m' violetclair='\e[1;35m' cyanfonce='\e[0;36m' cyanclair='\e[1;36m' grisclair='\e[0;37m' blanc='\e[1;37m' neutre='\e[0;m'
6
7
8login=`whoami`
9
10comp=$1
11
12hostname=`hostname`
13if [ ${hostname:0:5} = cicla ] ; then
14DODSDIR=/thredds/ipsl
15dthredds=thredds-su.ipsl.fr/thredds/fileServer/ipsl_thredds
16HTML=https://${dthredds}/$login/lmdz/MultiSimu/$comp
17fi
18if [ ${hostname:0:5} = spiri ] ; then
19DODSDIR=/thredds/ipsl
20dthredds=thredds-su.ipsl.fr/thredds/fileServer/ipsl_thredds
21HTML=https://${dthredds}/$login/lmdz/MultiSimu/$comp
22fi
23if [ ${hostname:0:5} = camel ] ; then
24DODSDIR=/modfs/ipslfs/dods
25fi
26if [ ${hostname:0:5} = irene ] ; then
27DODSDIR=
28fi
29if [ ${hostname:0:5} = jean- ] ; then
30DODSDIR=
31fi
32
33echo -e "${noir}%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%"
34echo -e "${bleufonce}YOUR MULTIATLAS IS AVAILABLE ON THE PAGE: : "
35rm -f tmp_web.txt
36cat <<  eod >> tmp_web.txt
37$HTML/ACCUEIL.html
38eod
39cat tmp_web.txt
40echo -e "${noir}%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%"
Note: See TracBrowser for help on using the repository browser.