Add a paragraph to summarize the motivation for releases since 5.815
[libwww-perl-eserte.git] / t / misc / ftp-list
blob9a4d3cf04cef7e46e7ecb2b8e46558f932298d06
1 #!/local/perl/bin/perl -w
3 use LWP::UserAgent;
5 $ua = new LWP::UserAgent;
7 $req = new HTTP::Request GET => 'ftp://ftp.uit.no/';
8 $req->header(Accept => "text/html");
10 $res = $ua->request($req);
12 print $res->as_string;