Updated SC2096 (markdown)

koalaman
2014-06-04 09:09:43 -07:00
parent 869fb464ed
commit 1d505de475

@@ -11,7 +11,7 @@
### Rationale: ### 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. The shebang should be rewritten to use at most one parameter. Shell options can instead be set in the body of the script.