looping bash script code example
Example 1: bash for i
for VARIABLE in 1 2 3 4 5 .. N
do
command1
command2
commandN
done
Example 2: bash script loop
while [ <some test> ]
do
<commands>
done
for VARIABLE in 1 2 3 4 5 .. N
do
command1
command2
commandN
done
while [ <some test> ]
do
<commands>
done