source: BOL/Multi_atlas/mk_clouds_NOcalipso.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: 702 bytes
Line 
1#!/bin/bash
2
3login=`whoami`
4
5SE=$1
6TG=$2
7
8hostname=`hostname`
9if [ ${hostname:0:5} = cicla ] ; then
10DODSDIR=/prodigfs/ipslfs/dods
11fi
12if [ ${hostname:0:5} = camel ] ; then
13DODSDIR=/prodigfs/ipslfs/dods
14fi
15if [ ${hostname:0:5} = irene ] ; then
16DODSDIR=
17fi
18if [ ${hostname:0:5} = jean- ] ; then
19DODSDIR=
20fi
21
22###cd /prodigfs/ipslfs/dods/fabric/lmdz/VLR/DJF/OBS/ZON
23if [ ! -d $DODSDIR/$login/lmdz/VLR/$SE/OBS/$TG ] ; then 
24   mkdir -p $DODSDIR/$login/lmdz/VLR/$SE/OBS/$TG 
25fi
26cd $DODSDIR/$login/lmdz/VLR/$SE/OBS/$TG
27
28\rm cll clm clh
29ln -s $DODSDIR/fabric/lmdz/VLR/$SE/OBS/$TG/cllcalipso cll
30ln -s $DODSDIR/fabric/lmdz/VLR/$SE/OBS/$TG/clmcalipso clm
31ln -s $DODSDIR/fabric/lmdz/VLR/$SE/OBS/$TG/clhcalipso clh
Note: See TracBrowser for help on using the repository browser.