Revision: | 1193 |
Committed: | Fri May 23 20:09:25 2025 UTC (4 months, 1 week ago) by francois |
File size: | 299 byte(s) |
Log Message: | dans les polycristaux les bornes sont calculés dans le programme pour chaque echantillon |
# | Content |
---|---|
1 | #!/bin/bash |
2 | |
3 | DIR="$(cd "$(dirname "$0")" && pwd)" |
4 | cd .. |
5 | |
6 | liste=$(svn status) |
7 | |
8 | etat=0 |
9 | for LINE in $liste |
10 | do |
11 | if [ $etat == 1 ] |
12 | then |
13 | echo $LINE |
14 | source $DIR/banniere_indivi.bash $LINE |
15 | fi |
16 | if [[ `echo ${LINE} | cut -c1` = 'M' ]] || [[ `echo ${LINE} | cut -c1` = 'A' ]] |
17 | then |
18 | etat=1 |
19 | else |
20 | etat=0 |
21 | fi |
22 | done |
23 | |
24 | |
25 | |
26 |
Name | Value |
---|---|
svn:executable | * |