hashbang
First line of a script.
Composed of the Hash, aka pound or number sign ("#"), followed by the Bang, aka exclamation mark ("!"), followed by the path to the script interpreter.
Usually found in scripts running on unix-based systems
Composed of the Hash, aka pound or number sign ("#"), followed by the Bang, aka exclamation mark ("!"), followed by the path to the script interpreter.
Usually found in scripts running on unix-based systems
#!/usr/bin/bash <--- That's what a sample hashbang line looks like.