boba.best/compress.sh

20 lines
282 B
Bash
Raw Normal View History

2021-06-12 20:33:37 -05:00
#!/bin/bash
2021-05-29 19:37:41 -05:00
files=$(find public/ -name "*.html" -o -name "*.xml" -o -name "*.css" -o -name "*.js")
gz() {
echo "GZIP $1"
gzip -fnk $1
}
2021-05-29 19:37:41 -05:00
br() {
echo "BROTLI $1"
brotli -fZk $1
}
2021-05-29 19:37:41 -05:00
export -f gz
export -f br
2021-05-29 19:37:41 -05:00
parallel $@ gz {} <<< $files
parallel $@ br {} <<< $files