We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
- Prepare
- Linux Shell
- Bash
- Looping and Skipping
- Discussions
Looping and Skipping
Looping and Skipping
Sort by
recency
|
255 Discussions
|
Please Login in order to post a comment
for i in {1..99} do if [[ i; fi done
Practice with while loop
for i in {1..99} do if ((i fi done
for num in {1..99..2}; do echo $num; done