Help for this page

Select Code to Download


  1. or download this
    while($line = <SOCK>)
    
  2. or download this
    $| = 1; # remove buffering
    while($input = <STDIN>){
        # maybe process the input
        print $input;
    }