Created
July 15, 2024 11:11
-
-
Save alanmatiasdev/251f4b7af68df7c99e9c4f402c521428 to your computer and use it in GitHub Desktop.
Revisions
-
alanmatiasdev created this gist
Jul 15, 2024 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,15 @@ #!/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"!