Last change
on this file since 4696 was
3694,
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.
Corrections.
|
-
Property svn:executable set to
*
|
File size:
751 bytes
|
Line | |
---|
1 | #!/bin/bash |
---|
2 | |
---|
3 | DIRATLAS=$1 |
---|
4 | |
---|
5 | cd $DIRATLAS |
---|
6 | |
---|
7 | i=1 |
---|
8 | while [ -f block.clean ] ; do |
---|
9 | echo Mise en attente du nettoyage pour 20s max si deja utilise |
---|
10 | sleep 1 |
---|
11 | (( i = $i + 1 )) |
---|
12 | echo clean en attente $i |
---|
13 | if [ "$i" = "20" ] ; then exit ; fi |
---|
14 | done |
---|
15 | |
---|
16 | touch block.clean |
---|
17 | |
---|
18 | |
---|
19 | grep 'not well .*.no CRS' */climaf.log | sed -e 's/.*.file //' -e 's/ is not .*.$//' | sort > all.clean |
---|
20 | if [ ! -f old.clean ] ; then |
---|
21 | cp all.clean tobe.clean |
---|
22 | else |
---|
23 | # fichier corrompus absents au passage precedent : |
---|
24 | diff all.clean old.clean | grep '^<' | sed -e 's/^<//' > tobe.clean |
---|
25 | fi |
---|
26 | |
---|
27 | for i in `cat tobe.clean` ; do |
---|
28 | rm -f $i |
---|
29 | echo rm -f $i |
---|
30 | done |
---|
31 | cp -f tobe.clean tobe$$.clean # pour memoire |
---|
32 | mv all.clean old.clean # pour la prochaine iteration |
---|
33 | |
---|
34 | \rm -f block.clean |
---|
Note: See
TracBrowser
for help on using the repository browser.