Skip to content

Files

Latest commit

 

History

History
26 lines (17 loc) · 477 Bytes

SC1115.md

File metadata and controls

26 lines (17 loc) · 477 Bytes

Pattern: Whitespace between # and ! in the shebang

Issue: -

Description

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.

Example of incorrect code:

# !/bin/sh
echo "Hello World"

Example of correct code:

#!/bin/sh
echo "Hello World"

Further Reading