Brad Lucas

Programming, Clojure and other interests
October 20, 2008

Bash One-Liner To Unpack Directory Of Tar Gz Files

In the directory where you have a collection of tar.gz files.

for FILE in $(ls); do tar -zxvf $FILE; done
Tags: linux