in reply to Parsing output from LWP::UserAgent

It would be interesting to see what kind of line separator is being used in the output. Try a hexdump to figure out the ascii code:

use Data::Hexdumper; # from CPAN my $results = hexdump( data => $data, # what to dump ); print $results;

-- saintmike