Pages

Pages

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.