You are not logged in.
Pages: 1
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
find . -name "*.tar.gz" -exec tar xvzf {} ;
Offline
Pages: 1