我想gunzip一个文件。我想知道perl自带的gunzip命令还是系统自带的(uncompress -f file_name.Z)是更快还是更好。
我已经包含在我的 perl 脚本中
use IO::Uncompress::Gunzip qw(gunzip $GunzipError) ;
我想测试 gunzip 命令,到目前为止,我一直在系统命令中使用 uncompress 作为:
system "wget ${my_file}.Z "
system "uncompress -f ${my_file}.Z";
我也可以用作:
gunzip -f ${my_file}.Z
不涉及任何其他开销?