Lines Matching defs:unzip

45 @EXPORT_OK = qw($UnzipError unzip );
75 sub unzip
102 # unzip always needs crc32
1090 use IO::Uncompress::Unzip qw(unzip $UnzipError) ;
1092 my $status = unzip $input => $output [,OPTS]
1093 or die "unzip failed: $UnzipError\n";
1096 or die "unzip failed: $UnzipError\n";
1175 A top-level function, C<unzip>, is provided to carry out
1180 use IO::Uncompress::Unzip qw(unzip $UnzipError) ;
1182 unzip $input_filename_or_reference => $output_filename_or_reference [,OPTS]
1183 or die "unzip failed: $UnzipError\n";
1187 =head2 unzip $input_filename_or_reference => $output_filename_or_reference [, OPTS]
1189 C<unzip> expects at least two parameters,
1232 characters "<" and ">" C<unzip> will assume that it is an
1276 characters "<" and ">" C<unzip> will assume that it is an
1301 The optional parameters for the one-shot function C<unzip>
1310 C<unzip> that are filehandles.
1313 input and/or output filehandles being closed once C<unzip> has
1407 use IO::Uncompress::Unzip qw(unzip $UnzipError) ;
1411 unzip $input => $output
1412 or die "unzip failed: $UnzipError\n";
1419 use IO::Uncompress::Unzip qw(unzip $UnzipError) ;
1423 unzip $input => $output, Name => "data1"
1424 or die "unzip failed: $UnzipError\n";
1431 use IO::Uncompress::Unzip qw(unzip $UnzipError) ;
1435 unzip $input => \$output, Name => "data1"
1436 or die "unzip failed: $UnzipError\n";
1444 use IO::Uncompress::Unzip qw(unzip $UnzipError) ;
1450 unzip $input => \$buffer
1451 or die "unzip failed: $UnzipError\n";
1884 Imports C<unzip> and C<$UnzipError>.
1887 use IO::Uncompress::Unzip qw(unzip $UnzipError) ;
1901 use IO::Uncompress::Unzip qw(unzip $UnzipError) ;
1919 use IO::Uncompress::Unzip qw(unzip $UnzipError) ;
1965 to read a zip file and unzip its contents to disk.