Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,971 questions

51,913 answers

573 users

How to use for loop in Bash

3 Answers

0 votes
for ((i = 0 ; i < 10 ; i++));
 do
  echo "$i";
 done
 
 
 
# run:
#
# 0
# 1
# 2
# 3
# 4
# 5
# 6
# 7
# 8
# 9
#

 



answered May 26, 2021 by avibootz
0 votes
for i in {0..10}
 do
  echo "i = $i";
 done
  
  
  
# run:
#
# i = 0
# i = 1
# i = 2
# i = 3
# i = 4
# i = 5
# i = 6
# i = 7
# i = 8
# i = 9
# i = 10
#
 

 



answered May 26, 2021 by avibootz
0 votes
for i in 1 2 3 4 5
 do
  echo "i = $i";
 done
  
  
  
  
# run:
#
# i = 1
# i = 2
# i = 3
# i = 4
# i = 5
#

 



answered May 26, 2021 by avibootz

Related questions

1 answer 234 views
1 answer 208 views
1 answer 183 views
183 views asked May 27, 2021 by avibootz
1 answer 239 views
239 views asked May 27, 2021 by avibootz
1 answer 238 views
238 views asked May 26, 2021 by avibootz
1 answer 190 views
190 views asked May 26, 2021 by avibootz
1 answer 257 views
257 views asked May 26, 2021 by avibootz
...