About

"Hash-bang" is a nickname for the sequence "#!" (octothorpe, exclamation mark). It is used

  • in Unix shell scripts to identify the executable that should be used to parse this file, e.g.

    #!/bin/bash
    #!/usr/bin/perl -w
    

    to run a script with the bash shell or with Perl (in warnings mode) respectively.

  • in URLs to indicate that this is a AJAX-based web application with web crawler support

history|show excerpt|excerpt history