mirror of
https://git.boba.best/boba.best/boba.best.git
synced 2024-10-31 14:45:58 -05:00
7 lines
243 B
Bash
Executable File
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 {}"
|