Skip to content

Files

Latest commit

 

History

History
25 lines (16 loc) · 428 Bytes

SC1113.md

File metadata and controls

25 lines (16 loc) · 428 Bytes

Pattern: Malformed shebang

Issue: -

Description

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

Example of incorrect code:

# /bin/bash
echo "Hello World"

Example of correct code:

#! /bin/bash
echo "Hello World"

Further Reading