boba.best/compress.sh

7 lines
243 B
Bash
Raw Permalink Normal View History

#!/bin/sh
2021-05-29 19:37:41 -05:00
files=$(find public/ -name "*.html" -o -name "*.xml" -o -name "*.css" -o -name "*.js")
printf '%s\n' "$files" | parallel $@ "echo 'GZIP {}' && gzip -fnk {}"
printf '%s\n' "$files" | parallel $@ "echo 'BROTLI {}' && brotli -fZk {}"