# shebang A shebang is a line added to scripts on [[Unix-like]] machines. It tells the system which interpreter to run the script with if the execution bit has been set. [[Bash]] scripts, for example, often start with the following line: ```bash #!/bin/bash ```