Help for this page

Select Code to Download


  1. or download this
    Options +ExecCGI
    AddHandler cgi-script .cgi .pl
    
  2. or download this
    <Directory /path/to/my/vhost/>
      AllowOverride all
    </Directory>
    
  3. or download this
    "uniq" is not exported by the List::Util module
    
  4. or download this
    sub uniq {
      my %seen;
      grep !$seen{$_}++, @_;
    }
    
  5. or download this
    #!/bin/sh
    echo "Content-Type: text/plain";
    echo "";
    echo "Hello world";