Last change
on this file since 5304 was
4342,
checked in by musat, 2 years ago
|
Inclut environnement spirit et dernieres corrections (3/3)
IonelaMusat?
|
-
Property svn:executable set to
*
|
File size:
1.1 KB
|
Rev | Line | |
---|
[3684] | 1 | #!/bin/bash |
---|
| 2 | |
---|
[4342] | 3 | source ~/env_Multi_atlas.sh |
---|
| 4 | |
---|
[3684] | 5 | local=`pwd -P` |
---|
[4342] | 6 | |
---|
| 7 | if [ 1 == 0 ]; then |
---|
[3684] | 8 | login=`whoami` |
---|
| 9 | hostname=`hostname` |
---|
| 10 | if [ ${hostname:0:5} = cicla ] ; then |
---|
[3882] | 11 | DODSDIR=/thredds/ipsl |
---|
[4307] | 12 | dthredds=thredds-su.ipsl.fr/thredds/fileServer/ipsl_thredds |
---|
| 13 | HTML00=http://${dthredds}/$login |
---|
[3684] | 14 | machine=ciclad |
---|
| 15 | fi |
---|
[4307] | 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 |
---|
[3684] | 22 | if [ ${hostname:0:5} = camel ] ; then |
---|
[3882] | 23 | DODSDIR=/thredds/ipsl |
---|
[3684] | 24 | fi |
---|
| 25 | if [ ${hostname:0:5} = irene ] ; then |
---|
| 26 | DODSDIR= |
---|
| 27 | fi |
---|
| 28 | if [ ${hostname:0:5} = jean- ] ; then |
---|
| 29 | DODSDIR= |
---|
| 30 | fi |
---|
[4342] | 31 | fi |
---|
[3684] | 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 |
---|
[4307] | 40 | for f in $DODSDIR/${login}/lmdz/MultiSimu/*/entete.html ; do |
---|
[3882] | 41 | sim=`echo $f | cut -d/ -f7` |
---|
[3684] | 42 | # A REFAIRE |
---|
[4307] | 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>" |
---|
[3684] | 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.