Does anyone know why the following script works?

#a-random-junk-string
echo HI

The shell executes the echo command, and outputs HI. I thought that since there is no "!" after the "#", the shell would give an error.

link|improve this question

feedback

2 Answers

up vote 12 down vote accepted

If there is no #! specifying a specific interpreter, the kernel will not intercept and launch it with the specified program.

However, the current shell may still interpret it as a command file, which is what you are seeing take place.

link|improve this answer
6  
This is correct. The reason the script still works is that '#' is the comment character in Bash/SH/ZSH/etc, so the first line is ignored as a comment. – Borealid Jul 26 '10 at 17:18
Thanks for the complete answer! – yassin Jul 26 '10 at 17:18
feedback

When the shell is asked to run a file with the executable bit turned on then it will examine the file and determine if it begins with a shebang #! if it does then it will execute that command which will get it's program text from the remainder of the file.

If the file does not start with a shebang then the shell will attempt to execute it itself. This is what is happening for you and the shell interprets the first line as a comment.

link|improve this answer
1  
Actually, the loader does this, not the shell. See in-ulm.de/~mascheck/various/shebang/sys1.c.html for Dennis Ritchie's announcement of this feature when it was added to Unix. It gives a wonderful explanation of why it's better for the loader to do it than for the shell to do it. – Dan Moulding Jul 26 '10 at 17:39
@Dan. Thanks that was interesting. – Steve Weet Jul 26 '10 at 21:32
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.