From 6d2562c3a2c593d14589553dfea82ffd17b38e7f Mon Sep 17 00:00:00 2001 From: abnerapsley1 <57500819+abnerapsley1@users.noreply.github.com> Date: Fri, 14 Aug 2020 11:44:49 -0400 Subject: [PATCH] Update loop-creating.md --- loop-creating.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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 ```