Help for this page

Select Code to Download


  1. or download this
    $handle = popen('PerlCode.pl','w');
    fwrite($handle,"here is some input\n");
    fwrite($handle,"more input\n");
    # etc....
    pclose($handle);
    
  2. or download this
    while (<STDIN>) {
      # Do something with the line we just read
    }