A
lgorithmique
N
umérique
D
istribuée
Private GIT Repository
projects
/
ThesisAhmed.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
7b3d21829f4f889726b4fe2c48f58125441cea2a
[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=20
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 + 21))
19
#echo "$i $j"
20
21
done
22
23