From 8d8dec8cfebe000449cf04cebd940bac622cbe37 Mon Sep 17 00:00:00 2001 From: koalaman Date: Thu, 11 Dec 2014 15:24:55 -0800 Subject: [PATCH] Updated SC1083 (markdown) --- SC1083.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/SC1083.md b/SC1083.md index f74cbd4..ac2092d 100644 --- a/SC1083.md +++ b/SC1083.md @@ -4,12 +4,16 @@ rmf() { rm -f "$@" } +or + eval echo \${foo} ### Correct code: rmf() { rm -f "$@"; } +and + eval "echo \${foo}" ### Rationale: