Gzip all files within a directory:

gzip -r ./

or

find . -type f ! -name '*.gz' -exec gzip "{}" \;