bash forloop code example
Example 1: bash for loop
#!/bin/bash
for (( c=1; c<=5; c++ ))
do
echo "Welcome $c times"
done
Example 2: bash loop
#!/bin/bash
# A simple bash "for loop" example below...
# This loop will run 5 times, and will echo the number in sequence as it goes.
# Mind the double . between the {}
# Note how the variable is called with the $ prefix, which can be done within the "" quotes!
for i in {1..5}
do
echo "This is loop number $i"
done
# To achieve the same in a single line is also simple
for i in {1..5};do echo "this is loop number $i";done
## Happy coding, my homies! <3
Example 3: for in bash
for i in {0..100..10}
do
echo $i
done
will print #0 10 20 30 40 ...100
Example 4: bash for loop
for VARIABLE in 1 2 3 4 5 .. N
do
command1
command2
commandN
done