in reply to Re^5: How to download or run exe file using rest client.
in thread How to download or run exe file using rest client.
What does running this show ?
poj#!perl use strict; use warnings; use LWP::UserAgent(); printf "%s Perl %s LWP %s\n\n",$^O,$^V,$LWP::VERSION; my $url = 'URL'; my $ua = LWP::UserAgent->new; my $resp = $ua->head($url); print $resp->as_string;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^7: How to download or run exe file using rest client.
by Anonymous Monk on Mar 20, 2019 at 14:30 UTC | |
by poj (Abbot) on Mar 20, 2019 at 15:18 UTC | |
by Anonymous Monk on Mar 20, 2019 at 15:28 UTC | |
by poj (Abbot) on Mar 21, 2019 at 15:16 UTC |