in reply to Re^2: Dynamically alter shtml file
in thread Dynamically alter shtml file

use LWP::Simple; $content = get $page_url; #and if you want, @LINES = split(/\n/, $content);
Works like a charm, although I did have to make dynamic adjustments to image src's, external javascript src's, stylesheet href's, and links on the page to account for the new url of the output page. Thanks again.