goodwork210
Technical User
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 scheduling into interval specified under a second i.e. repeating 3 same task in a second.
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 scheduling into interval specified under a second i.e. repeating 3 same task in a second.