Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -w
    $file = 'index.php';
    system("cat $file")
        && die "System call failure: $!\n";
    print "\n";
    
  2. or download this
    system('cat', "file") && ..