http://www.perlmonks.org?node_id=139149


in reply to parsing from text - to output doc

You could just do it within perl without using wget:
use LWP::Simple; if (getstore($url, $dest) == RC_OK) { print "Downloaded file - ", -s $dest, " bytes\n"; } else { print "Error!\n"; }

gav^