#!/bin/sh/
echo "Hello World"
#!/bin/sh
echo "Hello World"
The shebang specifies which file to use as an interpreter, but
probably due to some kind of typo, your script's interpreter ends in a
/
, indicating a directory.
Ensure it points to a valid executable filename.
None
ShellCheck is a static analysis tool for shell scripts. This page is part of its documentation.