You are not logged in.

#1 2005-03-01 11:29:15

anadyr
Member
Registered: 2005-02-10
Posts: 225

extract multiple tar.gz files

hey people

I.ve got a problem here. I.ve got a folder with about 100 .tar.gz files, and I want to extract them all with 1 command. How do I do this? "tar zxvf *.tar.gz" doesn.t work...

cheers

Offline

#2 2005-03-01 11:57:07

jochen
Member
From: Germany
Registered: 2004-06-01
Posts: 102

Re: extract multiple tar.gz files

find . -name "*.tar.gz" -exec tar xvzf {} ; 

Offline

Board footer

Powered by FluxBB