in reply to Using Archive::Tar with File::Find
#!/usr/bin/perl -w use strict; use Archive::Tar; use File::Find::Rule; my $tar = Archive::Tar->new(); $tar->add_files(File::Find::Rule->in(@ARGV)); $tar->write('Tmytest2.tgz',9);
Makeshifts last the longest.
|
|---|