The name shebang comes from the contraction of sharp bang, referring to the two characters. Unix jargon uses bang to refer to the exclamation point character.
A typical shebang line could be
It is common for different variants of even the same operating system to have different locations for the interpreter. Thus, it is not uncommon to need to adjust the shebang line after copying a script from one computer to another.Usage
#! /bin/sh
This instructs the operating system to interpret the file with the program /bin/sh.