Easiest way to untar multiple .tar.gz files
for i in *.tar.gz; do tar xzvf $i; done
find . -name \*.tar.gz -exec tar xzf '{}' \;
Thank you! :)
Comments
29.03.2010 - 15:09
I find this easier
find . -name \*.tar.gz -exec tar xzf '{}' \;29.03.2010 - 20:17
Nice :)
Thank you! :)