Lines Matching defs:anyuncompress

20 @EXPORT_OK = qw( $AnyUncompressError anyuncompress ) ;
66 sub anyuncompress
277 use IO::Uncompress::AnyUncompress qw(anyuncompress $AnyUncompressError) ;
279 my $status = anyuncompress $input => $output [,OPTS]
280 or die "anyuncompress failed: $AnyUncompressError\n";
283 or die "anyuncompress failed: $AnyUncompressError\n";
357 A top-level function, C<anyuncompress>, is provided to carry out
362 use IO::Uncompress::AnyUncompress qw(anyuncompress $AnyUncompressError) ;
364 anyuncompress $input_filename_or_reference => $output_filename_or_reference [,OPTS]
365 or die "anyuncompress failed: $AnyUncompressError\n";
369 =head2 anyuncompress $input_filename_or_reference => $output_filename_or_reference [, OPTS]
371 C<anyuncompress> expects at least two parameters,
414 characters "<" and ">" C<anyuncompress> will assume that it is an
458 characters "<" and ">" C<anyuncompress> will assume that it is an
483 The optional parameters for the one-shot function C<anyuncompress>
492 C<anyuncompress> that are filehandles.
495 input and/or output filehandles being closed once C<anyuncompress> has
588 use IO::Uncompress::AnyUncompress qw(anyuncompress $AnyUncompressError) ;
592 anyuncompress $input => $output
593 or die "anyuncompress failed: $AnyUncompressError\n";
600 use IO::Uncompress::AnyUncompress qw(anyuncompress $AnyUncompressError) ;
606 anyuncompress $input => \$buffer
607 or die "anyuncompress failed: $AnyUncompressError\n";
613 use IO::Uncompress::AnyUncompress qw(anyuncompress $AnyUncompressError) ;
615 anyuncompress '</my/home/*.txt.Compressed>' => '</my/home/#1.txt>'
616 or die "anyuncompress failed: $AnyUncompressError\n";
622 use IO::Uncompress::AnyUncompress qw(anyuncompress $AnyUncompressError) ;
628 anyuncompress $input => $output
1045 Imports C<anyuncompress> and C<$AnyUncompressError>.
1048 use IO::Uncompress::AnyUncompress qw(anyuncompress $AnyUncompressError) ;