in reply to HTTP client in perl

There is a package like that: LWP::Simple
Here is a sample program:
#!/usr/bin/perl use LWP::Simple; $content = get("http://www.perl.org") ; print $content;
There is a lot of neat stuff with LPW::Simple and LWP::UserAgent.
Check them out. Also there is other related notes here