This repository has been archived on 2022-05-24. You can view files and clone it, but cannot push or open issues or pull requests.
boba.best/compress.sh

7 lines
243 B
Bash
Executable File

#!/bin/sh
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 {}"