Skip to content

Files

Latest commit

 

History

History
22 lines (13 loc) · 591 Bytes

SC1008.md

File metadata and controls

22 lines (13 loc) · 591 Bytes

Pattern: Use of unrecognized shebang

Issue: -

Description

You have specified the shebang of an unrecognized language or shell dialect.

ShellCheck only supports a limited number of Bourne-based Unix shells: bash, ksh, dash and POSIX sh.

It does not support scripts written for other shells like Zsh, Csh, Tcsh or PowerShell, and it does not support other scripting languages like PHP, Python, JavaScript or SQL.

Example of incorrect code:

#!/usr/bin/python
print "Hello"

Further Reading