Note 88
Just write a simple note
Showing posts with label
gzip
.
Show all posts
Showing posts with label
gzip
.
Show all posts
Thursday, September 26, 2013
gzip all files in subfolder
find . -name '*.txt' | while read file; do gzip -9 -c "$file" > "$file.gz"; done
find . -name '*.js' | while read file; do gzip -9 -c "$file" > "$file.gz"; done
find . -name '*.css' | while read file; do gzip -9 -c "$file" > "$file.gz"; done
Older Posts
Home
Subscribe to:
Posts (Atom)