up vote 1 down vote favorite
share [g+] share [fb]

I have several directories that look like this:

dir1/
  |_foo.txt
  |_bar.txt
dir2/
  |_qux.txt
  |_bar.txt

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:

 dir1/
   |_foo.gz
   |_bar.gz
 dir2/
   |_qux.gz
   |_bar.gz

Is there a simple Unix way to do it?

link|improve this question

feedback

3 Answers

up vote 3 down vote accepted
gzip */*.txt

But the extension for each file will be .txt.gz, as gzip uses it to know the original filename.

link|improve this answer
1  
Just for clarification as it is not obvious: gzip will delete the uncompressed files itself. – ypnos Apr 26 '09 at 7:56
is there a way to not delete the originals? I currently am using the -c flag (gzip -9 -c style.css > style.css.gz) – DanielH Oct 28 '10 at 22:36
feedback

gzip -r dir1 dir2

link|improve this answer
Interesting; certainly works with the Cygwin version. I wasn't aware of the '-r' option applying to gzip, but it isn't surprising, either. – Jonathan Leffler Apr 25 '09 at 13:52
feedback

The following will work even if you have sub-directories. E.g. dir1/dir2/.../foo.txt

find . -type f -name "*.txt" -exec gzip {} \;

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.