in reply to Using perl script unzip the zip files
If you can manage to install Archive::Zip, by using local::lib so you can do it all in your own space without permissions from the system's manager, look at unzip#!/usr/bin/perl use warnings; use strict; my $file = 'test.zip'; my $rc = system( 'unzip', $file ) or warn "$!\n"; print "$rc\n";
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Using perl script unzip the zip files
by Anonymous Monk on Nov 05, 2018 at 15:33 UTC | |
by hippo (Archbishop) on Nov 05, 2018 at 15:41 UTC |