/ Published in: Bash
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
i=0; while [ $i -lt 10 ]; do echo $i; let i=$i+1; done