We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
#!
!
!/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.