Shell

Shell

Made by DeepSource

Missing ! in shebang SH-1113

Bug risk
Major

You appear to be specifying a shebang, but missing the bang (i.e. !). The shebang should always be of the form #!/path/shell.

Problematic code:

# /bin/bash
echo "Hello World"

Preferred code:

#! /bin/bash
echo "Hello World"