In computing and Linux the shebang is a character sequence that consists of `#` and `!`. Simply the shebang is expressed as `#!`. The shebang is also called sha-bang, hashbang, pound-bang, and hash-pling. The shebang is used to specify an interpreter for script files. Linux is popular with its script files and scripting languages like Bash, ZSH, Python, Perl, PHP, etc. The shebang is used to specify the interpreter type and location. When a script file is called the first line contains the shebang with the interpreter path.
### Table of content
* [Intro](#shebang--tutorial-in-linux)
* [Shebang Syntax](#shebang-syntax)
* [Common Shebangs](#common-shebangs)
* [Conclusion](#conclusion)
## Shebang Syntax
The shebang has the following syntax where the interpreter executable file path is appended after the shebang.
```
#!INTERPRETER
```
* INTERPRETER is the interpreter path like “/etc/bash” etc.