8 lines
185 B
Bash
Executable File
8 lines
185 B
Bash
Executable File
#!/bin/bash
|
|
# Compress all font files in the current directory using woff2_compress
|
|
|
|
for font in *.ttf *.otf; do
|
|
if [[ -f "$font" ]]; then
|
|
woff2_compress "$font"
|
|
fi
|
|
done |