Shell/Bash: for loop in shell script Example
Shell/Bash Example: This is the "for loop in shell script" Example. compiled from many sources on the internet by SimpleTutorials.org
for loop in shell script
for i in {1..5} do echo "Welcome $i times" done
bash for loop
#!/bin/bash for (( c=1; c<=5; c++ )) do echo "Welcome $c times" done
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
for in bash
for i in {0..100..10} do echo $i done will print #0 10 20 30 40 ...100
bash for loop
for VARIABLE in 1 2 3 4 5 .. N do command1 command2 commandN done
For loop in shell script
for i in `seq 1 10` do echo $i #Do something here. done
* Summary: This "for loop in shell script" Shell/Bash Example is compiled from the internet. If you have any questions, please leave a comment. Thank you!