Magic Number
The shebang is actually a human-readable instance of a magic number in the executable file, the magic byte string being 0x23 0x21
, the two-character encoding in ASCII. This magic number is detected by the "exec" family of functions, which determine whether an image file is a script or an executable binary. The presence of the shebang will result in the execution of the specified executable, usually an interpreter for the script's language. It has been claimed that some old versions of Unix expect the normal shebang to be followed by a space and a slash ("#! /
"), but this appears to be untrue.
The shebang characters are represented by the same two bytes in extended ASCII encodings, including UTF-8, which is commonly used for scripts and other text files on current Unix-like systems. However, UTF-8 files may begin with the optional byte order mark (BOM); if the "exec" function specifically detects the bytes 0x23 0x21
, then the presence of the BOM (0xEF 0xBB 0xBF
) before the shebang will prevent the script interpreter from being executed. Some authorities recommend against using the byte order mark in POSIX (Unix-like) scripts, for this reason and for wider interoperability and philosophical concerns. Additionally, a byte order mark is not necessary in UTF-8, as that encoding does not have endianness issues; it serves only to identify the encoding as UTF-8.
Read more about this topic: Shebang (Unix), Portability
Famous quotes containing the words magic and/or number:
“A river seems a magic thing. A magic, moving, living part of the very earth itselffor it is from the soil, both from its depth and from its surface, that a river has its beginning.”
—Laura Gilpin (18911979)
“I think, for the rest of my life, I shall refrain from looking up things. It is the most ravenous time-snatcher I know. You pull one book from the shelf, which carries a hint or a reference that sends you posthaste to another book, and that to successive others. It is incredible, the number of books you hopefully open and disappointedly close, only to take down another with the same result.”
—Carolyn Wells (18621942)