in reply to HTTP client in perl
#!/usr/bin/perl use LWP::Simple; $content = get("http://www.perl.org") ; print $content; [download]