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
#!/bin/bash halmsg="somefile" >|$halmsg
Line 3 SC2188: This redirection doesn't have a command. Move to its command (or use 'true' as no-op).
Is "true >| $halmsg" what you wanted to write to very explicitly empty that file and override a potential noclobber?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
For bugs
For 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:
Is "true >| $halmsg" what you wanted to write to very explicitly empty that file and override a potential noclobber?
The text was updated successfully, but these errors were encountered: