in reply to Re^2: How do i change the file names while untar?
in thread How do i change the file names while untar?
Try omitting the compression flag since you are dealing with an uncompressed tarball, and call new as the constructor,
my $tar = Archive::Tar->new('test.tar') or die $!;
That will make $tar an Archive::Tar object whose methods will be found.
After Compline,
Zaxo
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: How do i change the file names while untar?
by perl_99_monk (Novice) on Sep 29, 2005 at 18:40 UTC | |
|
Re^4: How do i change the file names while untar?
by perl_99_monk (Novice) on Sep 29, 2005 at 15:23 UTC |