How can we GZip every file separately?
I don\'t want to have all of the files in a big tar.
If you want to gzip every file recursively, you could use find piped to xargs:
$ find . -type f -print0 | xargs -0r gzip