Moin,
#######
use LWP::Simple
^
da fehlt ein Semikolon
$content = get("http://www3.domain.de/file.pl?param1=bluh¶m2=blah";)
^
das Semikolon ist verkehrt (es fehlt in der Doc tatsaechlich eins)
use LWP::Simple;
$content = get("http://www3.domain.de/file.pl?param1=bluh¶m2=blah");
Viele Gruesse,
n.d.p.