From 383f13e0d8c735c281e33b7d142d3070b694cb11 Mon Sep 17 00:00:00 2001 From: Peter Urda Date: Wed, 23 Dec 2015 03:28:31 -0500 Subject: [PATCH] Updated SC2051 (markdown) --- SC2051.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/SC2051.md b/SC2051.md index c1a62ad..063c87e 100644 --- a/SC2051.md +++ b/SC2051.md @@ -2,17 +2,21 @@ ### Problematic code: +```bash for i in {1..$n} do echo "$i" done +``` ### Correct code: +```bash for ((i=0; i