我正在研究 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";
我使用解压缩来释放文件。文件成功下载并存储在 $file 中,但 gunzip 代码不起作用。感谢任何帮助,谢谢。