Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save pujianto/1e6b60dddfd660164e7af6afdfdf9cf8 to your computer and use it in GitHub Desktop.
Save pujianto/1e6b60dddfd660164e7af6afdfdf9cf8 to your computer and use it in GitHub Desktop.
Search all css & js files recursively and compress it with brotli. -Z mode = maximum compression
find . -type f -regextype posix-extended -regex '.*(css|js)$' -exec brotli -fZ {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment