Compress multiple files individually with Gzip - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T07:44:52Z http://stackoverflow.com/feeds/question/788920 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/788920/compress-multiple-files-individually-with-gzip 0 Compress multiple files individually with Gzip neversaint 2009-04-25T13:28:36Z 2009-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#788932 3 Answer by Juliano for Compress multiple files individually with Gzip Juliano 2009-04-25T13:34:11Z 2009-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#788941 2 Answer by vovick for Compress multiple files individually with Gzip vovick 2009-04-25T13:38:03Z 2009-04-25T13:38:03Z <p>gzip -r dir1 dir2</p> http://stackoverflow.com/questions/788920/compress-multiple-files-individually-with-gzip/792519#792519 1 Answer by fahdshariff for Compress multiple files individually with Gzip fahdshariff 2009-04-27T07:29:28Z 2009-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>