Skip to content

Instantly share code, notes, and snippets.

@SamWhited
Created August 6, 2013 04:27
Show Gist options
  • Save SamWhited/6162000 to your computer and use it in GitHub Desktop.
Save SamWhited/6162000 to your computer and use it in GitHub Desktop.
Some oneliners for manipulating fonts in TeXLive
# 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