Shell

Shell

Made by DeepSource

Whitespace detected between # and ! in the shebang SH-1115

Bug risk
Major

The script has spaces between the # and ! in the shebang. This is not valid. Remove the spaces so the OS can correctly recognize the file as a script.

Problematic code:

# !/bin/sh
echo "Hello World"

Preferred code:

#!/bin/sh
echo "Hello World"