What exactly interpret #!/bin/bash line?
- by vava
Many scripts in different languages have a #!/bin/bash header with a path to interpreter, so they can be executed without explicit call to interpreter from command line.
But what exactly reads this line and run the interpreter, is it shell or kernel?