From 75fe2b04d569f1bc9716872c4eb0fb59e22d0f8a Mon Sep 17 00:00:00 2001 From: koalaman Date: Sat, 25 Mar 2017 09:16:45 -0700 Subject: [PATCH] Created SC1071 (markdown) --- SC1071.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 SC1071.md diff --git a/SC1071.md b/SC1071.md new file mode 100644 index 0000000..c39a00b --- /dev/null +++ b/SC1071.md @@ -0,0 +1,14 @@ +## ShellCheck only supports sh/bash/dash/ksh scripts. Sorry! + +### Problematic code: + +```sh +#!/usr/bin/python +print "Hello" +``` + +### Rationale: + +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. \ No newline at end of file