
org.sonar.l10n.shellcheck.rules.shellcheck.SC1113.html Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sonar-shellcheck-plugin Show documentation
Show all versions of sonar-shellcheck-plugin Show documentation
ShellCheck plugin for SonarQube
The newest version!
Use #!, not just #, for the shebang.
Problematic code
# /bin/bash
echo "Hello World"
Correct code
#! /bin/bash
echo "Hello World"
Rationale
You appear to be specifying a shebang, but missing the bang (i.e. !
). The shebang should always be on the form #!/path/shell
.
Exceptions
None.
© 2015 - 2025 Weber Informatics LLC | Privacy Policy