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 world"
#!/bin/sh echo "Hello World"
The script has leading spaces before the shebang (#!). This is not allowed.
#!
The #! should be the first two bytes in the file, as they're used as a file signature by the OS to determine whether a file is a script.
None.