From f49ea14404b9d8127ad5a4e2e7cc333c4233530e Mon Sep 17 00:00:00 2001 From: Joachim Ansorg Date: Fri, 12 Nov 2021 19:23:49 +0100 Subject: [PATCH] Updated SC2040 (markdown) --- SC2040.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SC2040.md b/SC2040.md index 9894465..6ec2ce3 100644 --- a/SC2040.md +++ b/SC2040.md @@ -1,4 +1,4 @@ -## #!/bin/sh was specified, so ____ is not supported, even when sh is actually bash. +## `#!/bin/sh` was specified, so ____ is not supported, even when sh is actually bash. The shebang indicates that the script works with `/bin/sh`, but you are using non-standard features that may not work with `/bin/sh`, **even if /bin/sh is actually bash**. Bash behaves differently when invoked as `sh`, and disabling support for the highlighted feature is one part of that.