-
Notifications
You must be signed in to change notification settings - Fork 1.8k
SC1115
Joachim Ansorg edited this page Nov 12, 2021
·
2 revisions
# !/bin/sh
echo "Hello World"
#!/bin/sh
echo "Hello World"
The script has spaces between the #
and !
in the shebang. This is not valid.
Remove the spaces so the OS can correctly recognize the file as a script.
None.