forked from UMR-CNRM/ddhtoolbox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexporte_intranet
executable file
·64 lines (64 loc) · 1.84 KB
/
exporte_intranet
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
#!/bin/bash
# --------------------------------------------------------------
#
# --------------------------------------------------------------
# Sujet:
# Methode:
# Externes:
# Auteur: 2015-07, J.M. Piriou.
# Modifications:
# --------------------------------------------------------------
# En entrée:
# En sortie:
# --------------------------------------------------------------
proc=$(basename $0) # nom de la présente procédure.
pref=`tempo`/$proc.$RANDOM # préfixe des fichiers temporaires.
dirloc=`pwd` # chemin du répertoire local.
set -evx
#
#-----------------------------------------------
# Nettoyage préalable des fichiers inutiles.
#-----------------------------------------------
#
net_points
#
#-------------------------------------------------
# On désinstalle ddhtoolbox pour créer un TAR plus petit.
#-------------------------------------------------
#
cd $dirloc/tools
./install clean
#
#-----------------------------------------------
# Cleanout the demonstration directory.
#-----------------------------------------------
#
cd $dirloc/demonstration
./cleanout
#
#-------------------------------------------------
# Création du fichier TAR.
#-------------------------------------------------
#
cd $dirloc/..
tar cvfh ddhtoolbox.tar ddhtoolbox
#
#-------------------------------------------------
# Copie de ce TAR sur Intranet http://intra.cnrm.meteo.fr/gmap-proc/perso/jean-marcel.piriou/NO_SAVE/ddhtoolbox/ddhtoolbox.tar .
#-------------------------------------------------
#
cp ddhtoolbox.tar ~/html/NO_SAVE/ddhtoolbox
#
#-----------------------------------------------
# Copie sur Lustre.
#-----------------------------------------------
#
mv ddhtoolbox.tar /cnrm/proc/piriou
#
#-------------------------------------------------
# Réinstallation de la ddhtoolbox.
#-------------------------------------------------
#
cd $dirloc/tools
./install
vu