Created
April 1, 2016 05:45
-
-
Save quickgrid/9e995961e20fa26f1d6ec9661bc9f441 to your computer and use it in GitHub Desktop.
Bash for loop example.
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
#!/bin/bash | |
#I will print in loop | |
for (( i = 0; i < 5; i++ )) | |
do | |
echo "hello word" | |
done | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment