Help for this page

Select Code to Download


  1. or download this
    use warnings;
    use strict;
    ...
      print "LINE : $_" while <$chan>;
      $chan->close;
    
  2. or download this
    use warnings;
    use strict;
    ...
      print $chan "top\n";
      print "LINE : $_" while <$chan>;
      $chan->close;