Re: installing LWP::UserAgent on windows



Sisyphus wrote:

perl -MLWP::Simple -e "getstore \"ftp://ftp.sunet.se/pub/lang/perl/CPAN/src/latest.tar.gz\",\"perl.tar.gz\"";


I find q{} much easier on the eyes than escaped quotation marks:

perl -MLWP::Simple -e "getstore
  q{ftp://ftp.sunet.se/pub/lang/perl/CPAN/src/latest.tar.gz},
  q{perl.tar.gz}"

(Please excuse the line-wrapping).

Sinan.
.