in reply to Re^2: tar help
in thread tar help
my @files; tie %dir, 'IO::Dir', "/var/lib/mysql/club"; foreach (keys %dir) { next if $_ eq "."; next if $_ eq ".."; push( @files, "/var/lib/mysql/club/" . $_ ); } my $tar = Archive::Tar->new; $tar->add_files( @files ); $tar->write('club_db.tar');
but .... don't forget to check for errors
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: tar help
by snyder (Initiate) on Mar 23, 2006 at 17:56 UTC |