From ad1322afb13ad9db1761ca4be03d81c50b422f1b Mon Sep 17 00:00:00 2001 From: Eisuke Kawashima Date: Wed, 8 Nov 2023 17:58:02 +0900 Subject: [PATCH] Updated SC3003 (markdown) --- SC3003.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.