Created
July 15, 2024 11:11
-
-
Save alanmatiasdev/251f4b7af68df7c99e9c4f402c521428 to your computer and use it in GitHub Desktop.
Convert Woff2 to TTF
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
if ! command -v woff2_decompress &> /dev/null | |
then | |
echo "woff2_decompress could not be found" | |
exit | |
fi | |
for file in *.woff2; do | |
echo "Converting $file to TTF..." | |
woff2_decompress "$file" | |
done | |
echo "Conversion complete"! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment