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

What can I replace with _____ to recursively gzip every file starting at myFolder and have the gzip be overwrite the file (rename the gzip file to the original filename)?

link|improve this question
feedback

migrated from stackoverflow.com Jul 31 '09 at 20:51

This question came from our site for professional and enthusiast programmers.

3 Answers

You could also try

 find myFolder -type f -exec gzip {} \; -exec mv {}.gz {} \;
link|improve this answer
Aha, forgot about multiple -exec calls in find, me likey – Wesley Mason Jul 31 '09 at 11:09
feedback

try:

find myFolder -type f -exec gzip {} +
link|improve this answer
Be aware that this will rename your files from myFile to myFile.gz – Kristof Provost Jul 30 '09 at 10:42
feedback

A simple, not very elegant bash script is to simply cd in, gzip them all in a loop, and mv them back (gzip by default removes the non-compressed file):

#!/bin/bash
cd myFolder
for f in `find ./ -type f`
do
    gzip $f
    mv $f.gz $f
done

Put that in a file called "gzip_and_rename.sh" for example, chmod -775 and run it like ./gzip_and_rename.sh (if running from within myFolder itself, remove the "cd myFolder" line from the script).

link|improve this answer
And yes I do know backticks are evil, but as I said this is just a quick hack script. – Wesley Mason Jul 30 '09 at 10:50
why are backticks evil, what do you replace them with ? – Anonymous Jul 30 '09 at 13:36
See commandlinefu.com/commands/view/1387/backticks-are-evil – Wesley Mason Jul 31 '09 at 10:13
feedback

Your Answer

 
or
required, but never shown