Open janstieler opened 2 years ago
I'm also looking for this answer.
You can run the following in shell:
for file in *.ttf; do woff2_compress $file; done
or
for file in *.otf; do woff2_compress $file; done
Thanks, I will try!
If the file has weird names, use this slight change:
for file in *.otf; do woff2_compress "$file"; done
Hi, is it possible to compress multiple fonts in one call?
Cheers