Skip to content

Instantly share code, notes, and snippets.

@alanmatiasdev
Created July 15, 2024 11:11
Show Gist options
  • Save alanmatiasdev/251f4b7af68df7c99e9c4f402c521428 to your computer and use it in GitHub Desktop.
Save alanmatiasdev/251f4b7af68df7c99e9c4f402c521428 to your computer and use it in GitHub Desktop.
Convert Woff2 to TTF
#!/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