Help for this page

Select Code to Download


  1. or download this
    my ($res, $txt, $err) = $ct->exec("$lspvob");
  2. or download this
    my $fh = new FileHandle("printf \'$txt\' |") or die;
  3. or download this
    print $txt; # prints the text as expected.
    
    while (<$fh>){ # prints only part of the text.
       print $_;
    }