Réponse

#!/bin/bash

Colonne
Explication

Starting a Script With #!
- It is called a shebang or a "bang" line
- It is nothing but the absolute path to the Bash interpreter
- It consists of a number sign and an exclamation point character (#!), followed by the full path to the interpreter such as /bin/bash
- All scripts under Linux execute using the interpreter specified on a first line
- Almost all bash scripts often begin with #!/bin/bash (assuming that Bash has been installed in /bin)
-e.g. #!/bin/php

Question

Example of a shebang

Thématique