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