Last active
September 21, 2018 08:33
-
-
Save seeni-dev/f10fdf9e823988f0e73c5046f77fd212 to your computer and use it in GitHub Desktop.
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
i=0 | |
while [ $i -lt 10 ] | |
do | |
echo $i; | |
i=$((i+1)); #increment the varaible i | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment