我正在研究Perl。我需要从网站下载.gz文件,然后在Perl中进行gunzip或解压缩。我的代码:
use LWP::Simple;
use XML::Simple qw(:strict);
use Data::Dumper;
use DBI;
use Getopt::Long;
use IO::Uncompress::Gunzip qw($GunzipError);
use IO::File;
my $url = 'http://nvd.nist.gov/feeds/xml/cve/nvdcve-2.0-Modified.xml.gz';
my $file = 'nvdcve-2.0-Modified.xml.gz';
getstore($url, $file);
my $xmlFile = 'nvdcve-2.0-Modified.xml';
gunzip $file => $xmlFile
or die "gunzip failed: $GunzipError\n";
我使用Uncompress来释放文件。该文件下载并存储在$ file中成功,但gunzip代码无法正常工作。感谢任何帮助,谢谢。
答案 0 :(得分:2)
您必须将gunzip
函数导入命名空间:
use IO::Uncompress::Gunzip qw(gunzip $GunzipError);