Updated SC3003 (markdown)

Eisuke Kawashima
2023-11-08 17:58:02 +09:00
parent 4dddaac320
commit ad1322afb1

@@ -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.