From 3f3bbb0966b191937fcaafb143d824dbe1de6c4f Mon Sep 17 00:00:00 2001 From: koalaman Date: Wed, 2 Sep 2015 21:11:07 -0700 Subject: [PATCH] Updated SC1098 (markdown) --- SC1098.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SC1098.md b/SC1098.md index 0f0220f..3739634 100644 --- a/SC1098.md +++ b/SC1098.md @@ -17,7 +17,7 @@ Shells differ widely in how they handle unescaped parentheses in `eval` expressi * `eval $var=(bar)` is allowed by ksh, but not bash or dash. * `eval foo() ( echo bar; )` is not allowed by any shell. -Since the expression is evaluated as shell script code anyways, it should be passed in as a literal string without relying on special case parsing rules in the target shell. Quote or escape the characters appropriately. +Since the expression is evaluated as shell script code anyways, it should be passed in as a literal string without relying on special case parsing rules in the target shell. Quote/escape the characters accordingly. ### Exceptions: