muflax65ngodyewp.onion/compress-html.sh

14 lines
288 B
Bash
Raw Normal View History

2012-02-04 21:17:48 +01:00
#!/bin/zsh
# Copyright muflax <mail@muflax.com>, 2012
# License: GNU GPL 3 <http://www.gnu.org/copyleft/gpl.html>
setopt RE_MATCH_PCRE
echo "compressing 'out'..."
for f in out/**/*(.); do
if [[ $f =~ "\.(html|css|xml|js)$" ]]; then
gzip --best -f -v -c "$f" > "$f.gz"
fi
done