All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.sonar.l10n.shellcheck.rules.shellcheck.SC1113.html Maven / Gradle / Ivy

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