How does the #! shebang work?
In a script you must include a #! on the first line followed by the path to the program that will execute the script (e.g.: sh, perl). As far as I know, the # character denotes the start of a comment and that line is supposed to be ignored by the program executing the script. … Read more