Help for this page

Select Code to Download


  1. or download this
    while(<$pipe>)
    {
      read from pipe...
    }
    
  2. or download this
    ted@skywalkerii ~
    $ perl client.pl
    ...
    while (my $receive = <$sock>) {
        print "Got: >$receive<\n";
    }