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:
“Religion differs from magic in that it is not concerned with control or manipulation of the powers confronted. Rather it means submission to, trust in, and adoration of, what is apprehended as the divine nature of ultimate reality.”
—Joachim Wach (18981955)
“Envy has blackened every page of his history.... The future, in its justice, will number him among those men whom passions and an excess of activity have condemned to unhappiness, through the gift of genius.”
—Eugène Delacroix (17981863)