-
Notifications
You must be signed in to change notification settings - Fork 1.8k
SC1113
Joachim Ansorg edited this page Nov 12, 2021
·
2 revisions
# /bin/bash
echo "Hello World"
#! /bin/bash
echo "Hello World"
You appear to be specifying a shebang, but missing the bang (i.e. !
). The shebang should always be on the form #!/path/shell
.
None.