Compress multiple files individually with Gzip - Stack Overflow most recent 30 from stackoverflow.com2009-12-07T07:44:52Zhttp://stackoverflow.com/feeds/question/788920http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/788920/compress-multiple-files-individually-with-gzip0Compress multiple files individually with Gzipneversaint2009-04-25T13:28:36Z2009-04-27T07:29:28Z
<p>Dear all,</p>
<p>I have several directories that look like this:</p>
<pre><code>dir1/
|_foo.txt
|_bar.txt
dir2/
|_qux.txt
|_bar.txt
</code></pre>
<p>For each of this directory I want to compress the files inside it into *.gz format
then delete the uncompressed ones. So finally we hope to get something like this:</p>
<pre><code> dir1/
|_foo.gz
|_bar.gz
dir2/
|_qux.gz
|_bar.gz
</code></pre>
<p>Is there a simple Unix way to do it?</p>
http://stackoverflow.com/questions/788920/compress-multiple-files-individually-with-gzip/788932#7889323Answer by Juliano for Compress multiple files individually with GzipJuliano2009-04-25T13:34:11Z2009-04-25T13:34:11Z<pre><code>gzip */*.txt
</code></pre>
<p>But the extension for each file will be .txt.gz, as gzip uses it to know the original filename.</p>
http://stackoverflow.com/questions/788920/compress-multiple-files-individually-with-gzip/788941#7889412Answer by vovick for Compress multiple files individually with Gzipvovick2009-04-25T13:38:03Z2009-04-25T13:38:03Z<p>gzip -r dir1 dir2</p>
http://stackoverflow.com/questions/788920/compress-multiple-files-individually-with-gzip/792519#7925191Answer by fahdshariff for Compress multiple files individually with Gzipfahdshariff2009-04-27T07:29:28Z2009-04-27T07:29:28Z<p>The following will work even if you have sub-directories. E.g. dir1/dir2/.../foo.txt</p>
<p>find . -type f -name "*.txt" -exec gzip {} \;</p>