diff options
| author | st33v <github@f3rr3t.com> | 2015-08-30 01:30:20 +1000 |
|---|---|---|
| committer | st33v <github@f3rr3t.com> | 2015-08-30 01:30:20 +1000 |
| commit | 49afaea7a8bd4cd4bc661e56c0af8af47ccbc35d (patch) | |
| tree | 8b0d9221afaef7f3a0806541a602b73e3e8b6331 /loop.sh | |
| parent | c0c4557456459a8254edd8a47fcec19eb82d2adc (diff) | |
typo in readme.
Diffstat (limited to 'loop.sh')
| -rwxr-xr-x | loop.sh | 15 |
1 files changed, 15 insertions, 0 deletions
@@ -0,0 +1,15 @@ +#!/bin/bash + + + +# loop test + +i=0 +MAX=3 + +while [ $i -lt $MAX ] +do + + echo "number" $i + let "i+=1" +done |
