Created
August 20, 2013 19:21
-
-
Save dushmis/6285969 to your computer and use it in GitHub Desktop.
How to write a loop in unix shell
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for i in `seq 1 5`; | |
do | |
echo $i; | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment