Help for this page

Select Code to Download


  1. or download this
    if (!$ARGV[0]) {
       print "Enter launch site! (don't forgot to include the \"http://\")
    +\n";
    ...
       exit(0) if(($target) && ($target eq $target));
       $target = $ARGV[0] unless($target);
       ...
    
  2. or download this
    my $Usage = "$0 http://target.url\n";
    
    ...
    $target = shift;
    
    ...
    
  3. or download this
    die $Usage unless (@ARGV == 1 and $ARGV[0] =~ m{^((?:http|ftp)://)?(\w
    +*.*)}i and $2);
    
    $target = ( $1 ) ? shift : ( substr($2,0,3) eq "ftp" ?  "ftp://$2" : "
    +http://$2";
    
    ...