-
Notifications
You must be signed in to change notification settings - Fork 1.8k
SC1104
Joachim Ansorg edited this page Nov 12, 2021
·
2 revisions
!/bin/sh
echo "Hello"
#!/bin/sh
echo "Hello"
You appear to be specifying an interpreter in a shebang, but it's missing the hash part. The shebang must always start with #!
.
Even the name "shebang" itself comes from "hash" (#
) + "bang" (!
).
None.