Help Save Code2care! 😢

I've lost 99% of my revenue to AdBlockers & AI. Your support could be the lifeline that keeps this passion project alive!

Buy Code2care a Coffee QR Code

Scan to Buy Me A Coffee and help me continue coding for you!

Bash For Loop Example


Introduction:

for loop is one of the most used control flow statements in any scripting or programming language, if you want to do some task using bash shell that is repetitive, you can make use of for loop in bash, let's see some examples,

Syntax:

for variable_name in 1 2 3 4 .. n
do
  command/statement 1
  command/statement 2
  ...
  ...
 command/statement n
done

Example:
#!/bin/bash
#Mutiplication Table of Two

no=2

for num in 1 2 3 4 5 6 7 8 9 10
do
   echo $(($num*$no)) 
done
Example:
#!/bin/bash
#Mutiplication Table of Two

no=2

for num in {1..10}
do
   echo $(($num*$no)) 
done


Syntax:

for (( initializer; condition; step ))
do
     command/statement
     ...
     command/statement
done


Example:
#!/bin/bash
#Mutiplication Table of Two

no=2

for (( i=1; i<=10; i++ ))
do
  echo $(($i*$no)) 
done
for loop in bash example

You can download this article in various formats for your convenience. Choose from the options below:

Facing issues? Have Questions? Post them here! I am happy to answer!

Author Info:

Rakesh (He/Him) has a Masters Degree in Computer Science with over 15+ years of experience in Web and Application development. He is the author of insightful How-To articles for Code2care.

Follow him on: X

You can also reach out to him via e-mail: rakesh@code2care.org

Copyright Code2care © 2024 | Privacy Policy | About Us | Contact Us | Search