home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Mac Easy 2010 May
/
Mac Life Ubuntu.iso
/
casper
/
filesystem.squashfs
/
usr
/
share
/
doc
/
libio-compress-zlib-perl
/
examples
/
anycat
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2008-02-18
|
345 b
|
18 lines
#!/usr/local/bin/perl
use strict ;
use warnings ;
use IO::Uncompress::AnyInflate qw( anyinflate $AnyInflateError );
@ARGV = '-' unless @ARGV ;
foreach my $file (@ARGV) {
anyinflate $file => '-',
Transparent => 1,
Strict => 0,
or die "Cannot uncompress '$file': $AnyInflateError\n" ;
}