Pages

Thursday, August 9, 2012

Batch Unzipping

Hi!

If you have a lot of files to unzip, you can do it by this single command.
 find . -name "*.gz" -exec gunzip {} \;

It will find all .gz files and unzip them.

No comments:

Post a Comment