You are viewing a single comment's thread. Return to all comments →
#!/bin/bash for i in {1..100}; do if [ `expr $i % 2` != 0 ]; then echo $i fi; done
Seems like cookies are disabled on this browser, please enable them to open this website
Looping and Skipping
You are viewing a single comment's thread. Return to all comments →