in reply to Creating Archives for Files > 4GB
It can knock off a 6 GB tarball like it was 6 K.#!/usr/bin/perl use strict; use warnings; use Archive::Any::Create; my $archive = Archive::Any::Create->new; $archive->container('myStuff');#top-level dir with your files $archive->add_file('stuff.pl', 'perl script'); $archive->add_file('morestuff.pl', 'perl script'); $archive->write_file('myStuff.tar.gz'); #or #$archive->write_file('myStuff.zip');
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Creating Archives for Files > 4GB
by desemondo (Hermit) on Jul 23, 2010 at 12:37 UTC |