| Linux hosting5.siteguarding.com 3.10.0-962.3.2.lve1.5.88.el7.x86_64 #1 SMP Fri Sep 26 14:06:42 UTC 2025 x86_64 Path : /usr/share/doc/perl-IO-Compress-2.061/io/ |
| Current File : //usr/share/doc/perl-IO-Compress-2.061/io/anycat |
#!/usr/bin/perl
use strict ;
use warnings ;
use IO::Uncompress::AnyUncompress qw( anyuncompress $AnyUncompressError );
@ARGV = '-' unless @ARGV ;
foreach my $file (@ARGV) {
anyuncompress $file => '-',
Transparent => 1,
Strict => 0,
or die "Cannot uncompress '$file': $AnyUncompressError\n" ;
}