Home : General : Perl Programming :

General: Perl Programming: Re: [rompole] How do I extract the files from a .tar.gz file on my web-site?: Edit Log

Here is the list of edits for this post
Re: [rompole] How do I extract the files from a .tar.gz file on my web-site?
Do you have ssh access?....if so use:

tar -zxvf billeder.tar.gz

If not, try first creating a $tar object Wink:

Code:
my $tar = Archive::Tar->new("billeder.tar.gz", 1);

$tar->extract($tar->list_files);

print "Content-type: text/html\n\n";
print "OK its extracted\n";

Last edited by:

Paul: Feb 3, 2003, 3:22 AM

Edit Log: