It will print out the HTTP header (including cookies) and the full body for a URL given on the command line.
#!/usr/bin/perl -w use LWP::UserAgent; my $ua = LWP::UserAgent->new( keep_alive => 1, timeout => 30, debug => 1 ); my $body = $ua->get($ARGV[0]); print $body->as_string;
In reply to LWP Analysis by spatterson
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |