diff --git a/loop-creating.md b/loop-creating.md index cef033f..2b1049c 100644 --- a/loop-creating.md +++ b/loop-creating.md @@ -1,8 +1,10 @@ # Creating Loops in the Shell # +This starts i on 0, ends on 10, and adds 1 to each itteration to the value of i. The body of the loop prints the value of i for each itteration. + ``` for ((i=0; i=10; i+=1)) do echo ${i} -done' +done ```