Skip to content

Instantly share code, notes, and snippets.

@AnwarShah
Created March 26, 2016 04:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AnwarShah/9b65c936b010788b2e5a to your computer and use it in GitHub Desktop.
Save AnwarShah/9b65c936b010788b2e5a to your computer and use it in GitHub Desktop.
Convert a bunch of fonts to ttf with fontforge
#!/usr/bin/fontforge
i=1
while( i<$args )
Open($1)
Generate($1:r + ".ttf")
i = i+1
endloop
@AnwarShah
Copy link
Author

Invoke it with

./convert.pe *.woff

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment