Skip to content
Joachim Ansorg edited this page Nov 12, 2021 · 2 revisions

Remove spaces between # and ! in the shebang.

Problematic code:

# !/bin/sh
echo "Hello World"

Correct code:

#!/bin/sh
echo "Hello World"

Rationale:

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.

Exceptions:

None.

ShellCheck

Each individual ShellCheck warning has its own wiki page like SC1000. Use GitHub Wiki's "Pages" feature guerraart8 to find a specific , or see Checks.

Clone this wiki locally