From 1d505de475001ad65322aefac07bc548554b29b7 Mon Sep 17 00:00:00 2001 From: koalaman Date: Wed, 4 Jun 2014 09:09:43 -0700 Subject: [PATCH] Updated SC2096 (markdown) --- SC2096.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SC2096.md b/SC2096.md index ce80aea..53cd477 100644 --- a/SC2096.md +++ b/SC2096.md @@ -11,7 +11,7 @@ ### Rationale: -Most operating systems, including Linux, FreeBSD and OS X, allow only a single parameter in the shebang. In the example, `env` will be called with a single parameter -- `bash -x` -- and will therefore fail. +Most operating systems, including Linux, FreeBSD and OS X, allow only a single parameter in the shebang. The example is equivalent to calling `env 'bash -x'` instead of `env 'bash' '-x'`, and it will therefore fail. The shebang should be rewritten to use at most one parameter. Shell options can instead be set in the body of the script.