Return to Snippet

Revision: 21650
at December 17, 2009 11:22 by ramisedhom


Initial Code
i=0;
while [ $i -lt 10 ];
  do echo $i;
  let i=$i+1;
done

Initial URL


Initial Description


Initial Title
Loop through range of numbers sequence

Initial Tags
Bash

Initial Language
Bash