Hi,
1. I have a little piece of Perl code and must modify it
so I can obtain in $req the output from a shell command
(In that case I get source from URL)
my $ua = LWP::UserAgent->new;
my $req = HTTP::Request->new('GET', $src);
my $resp = $ua->request($req, $dest);
2. How I can obtain a task...