Created
August 6, 2013 04:27
-
-
Save SamWhited/6162000 to your computer and use it in GitHub Desktop.
Some oneliners for manipulating fonts in TeXLive
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
# List fonts on the system | |
fc-list | cut -d ':' -f 2 | sort | uniq | sed 's/^\s*//g' | |
# Get name of all fonts in current directory | |
find -name '*.[to]tf' -exec otfinfo --family \{\} \; | sort | uniq |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment