We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
shellcheck --version
#!/bin/sh LF=' ' find "$SOURCE" \ -name '.DS_Store' -o -name 'Thumbs.db' -prune -o \ -type f \ -print | sort | xargs -n "$FILE_LIMIT" | while IFS= read -r "-d${LF}" fs; do TARGET="${PREFIX}-${I}" mkdir -p "$TARGET" for f in $fs; do cp "$f" "$TARGET" done I=$((I+1)) done
while IFS= read -r "-d${LF}" fs; do ^-------^ SC3045 (warning): In POSIX sh, read -d is undefined.
(No warning should be displayed.)
For comparison, the wiki does not document this flag as being non-POSIX compliant:
https://www.shellcheck.net/wiki/SC3045
In fact, the POSIX standard formally accepts -d:
-d
https://pubs.opengroup.org/onlinepubs/9799919799/utilities/read.html
The text was updated successfully, but these errors were encountered:
No branches or pull requests
For bugs
shellcheck --version
or "online"): 0.10.0For new checks and feature suggestions
Here's a snippet or screenshot that shows the problem:
Here's what shellcheck currently says:
Here's what I wanted or expected to see:
(No warning should be displayed.)
For comparison, the wiki does not document this flag as being non-POSIX compliant:
https://www.shellcheck.net/wiki/SC3045
In fact, the POSIX standard formally accepts
-d
:https://pubs.opengroup.org/onlinepubs/9799919799/utilities/read.html
The text was updated successfully, but these errors were encountered: