in reply to Re: using Archive::Tar
in thread using Archive::Tar
Combine with File::Find:
use strict; use warnings; use autodie; use Archive::Tar; use File::Find; my @fl; find (sub { -d $_ or push @fl, $File::Find::name }, "Bundle::Finaltest +"); Archive::Tar->create_archive ("Bundle-FinalTest.tar.gz", COMPRESS_GZIP +, @fl);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: using Archive::Tar
by ansh batra (Friar) on Oct 05, 2011 at 05:26 UTC | |
| A reply falls below the community's threshold of quality. You may see it by logging in. |