Created
August 16, 2020 20:15
-
-
Save jupdike/f037d9b9827f86af8d9f0a0f2af56b49 to your computer and use it in GitHub Desktop.
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
#!/Applications/FontForge.app/Contents/MacOS/FontForge | |
# ONLY CONVERTS TO .SVG FONTS | |
# REAME: call from ffconvert.sh with (cd /path/with/font/files && ffconvert.sh *.ttf) | |
# or *.otf | |
# if a problem occurs, just rename fonts without spaces! | |
#Open($1) | |
#Generate($1:r + ".svg") | |
i=1 | |
while ( i<$argc ) | |
Open($argv[i]) | |
Generate($argv[i]:r + ".svg") | |
i = i+1 | |
endloop |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment