I piping the output of several scripts. One of these scripts outputs an entire HTML page that gets processed by my perl script. I want to be able to pull the whole 58K of text
To get it into a single string you want:
#!/usr/bin/perl -w use strict; my $html_string; while(<>){ $html_string .= $_; } print $html_string;