Skip to content
koalaman edited this page Mar 25, 2017 · 2 revisions

ShellCheck only supports sh/bash/dash/ksh scripts. Sorry!

Problematic code:

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

Rationale:

You have specified the shebang of an unsupported 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.

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