diff --git a/SC3003.md b/SC3003.md index 79c0602..ec83507 100644 --- a/SC3003.md +++ b/SC3003.md @@ -34,7 +34,7 @@ IFS=$' \t\n' ### Rationale: -You are using the interpolated string Bashism `$'..'` in a script that declares itself as POSIX sh (e.g. via `#!/bin/sh`). +ANSI-C quoting, `$'..'`, is a `bash` extension, which is not supported by POSIX `sh`. To ensure the script runs correctly on other systems, either switch to Bash, or rewrite it in a POSIX compatible way.