-
Notifications
You must be signed in to change notification settings - Fork 1.8k
SC2246
Vidar Holen edited this page Jan 14, 2019
·
1 revision
#!/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
- Help by adding links to BashFAQ, StackOverflow, man pages, POSIX, etc!