loop in shell script code example

Example 1: for loop in shell script

for i in {1..5}
do
   echo "Welcome $i times"
done

Example 2: loop bash

years=(2018 2019)
days=(74 274)

for year in "${years[@]}"; do
    for day in $(seq -w ${days[0]} ${days[1]}); do
               echo $year
               echo $day
    done
done

Example 3: 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 4: For loop in shell script

for i in `seq 1 10`
do
	echo $i #Do something here.
done

Example 5: bash script loop

while [ <some test> ]
do
<commands>
done

Example 6: for loop iteration in shell script

#!/bin/bash
START=1
END=5
echo "Countdown"
 
for (( c=$START; c<=$END; c++ ))
do
	echo -n "$c "
	sleep 1
done
 
echo
echo "Boom!"