/ Published in: Bash
Expand |
Embed | Plain Text
i=0; while [ $i -lt 10 ]; do echo $i; let i=$i+1; done
Comments
Subscribe to comments
You need to login to post a comment.
i=0; while [ $i -lt 10 ]; do echo $i; let i=$i+1; done
Subscribe to comments
You need to login to post a comment.
for bash (not sh):
for (( i=0; i