]> AND Private Git Repository - ThesisAhmed.git/blob - thesis-presentation/asyn/mcp.sh
Logo AND Algorithmique Numérique Distribuée

Private GIT Repository
corrections
[ThesisAhmed.git] / thesis-presentation / asyn / mcp.sh
1 #!/bin/bash
2
3 #for f in {9..11}; do cp aa/a-3.png   a-$f.png; done
4 #for f in {$i..$j}; do cp ${file}   a-$f.png; done      
5  i=0
6  j=26
7    echo "$i  $j"
8 FILES="aa/*"
9  for file in $FILES
10   do
11     for f in $(seq  $i  $j)
12     do 
13      cp ${file}   a-$f.png 
14      c=1
15     done 
16    #echo ${file}
17   i=$(($j + 1))
18   j=$(($j + 27))
19   #echo "$i  $j"
20
21  done
22
23