in reply to tar help
The ptar perl script which comes with Archive::Tar shows you how to do this using File::Find. Relevant fragment:
if( $opts->{c} ) { my @files; find( sub { push @files, $File::Find::name; print $File::Find::name.$/ if $verbose }, @ARGV ); Archive::Tar->create_archive( $file, $compress, @files ); exit; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: tar help
by snyder (Initiate) on Mar 21, 2006 at 21:00 UTC |