PERL管道读压缩文件

来源:互联网 发布:淘宝账号可以卖东西吗 编辑:程序博客网 时间:2024/05/03 19:09
gz格式:
open IN, "gzip -dc $infile |" or die "cannot open $infile file/n";
tgz(tar.gz)格式:
open IN, "tar xf $infile -O|" or die "cannot open $infile file/n";
7zip格式:
open IN, "7za e -so $infile |" or die "cannot open $infile file/n";