Win! Two people have found the world's largest waffle and after a brief period of disagreement over who should eat it, they decide to share. Their decision wins.
Used to be the sign for a number, but thanks to goddamn twitter its called a hashtag. possibly the most annoying key out there that kids use these days before the dumbest sayings and words. And don't think I'm an old party pooper because I'm 15 and saying this.
The "shebang" syntax is the number sign followed by an exclaimation point and is embedded in most UNIX scripting languages to tell the computer what interpreter to use to run the script when the script is executed. This goes on the first line of your script, followed by the path to the program that will run, or interpret, you script, followed by a space and any other options you want to pass to the interpreter, finished by a carriage return. Nothing else can go on this line as seen in the Perl script below:
#!/bin/perl -w
#
# My first "Hello World!" script in Perl
#
print "Hello World!\n";
#!/bin/perl <-- Tells a computer to use the perl executable to run the script to follow.
#!/bin/ksh <-- Tells a computer to use the UNIX ksh (k shell) to run the script to follow.