Skip to content

Instantly share code, notes, and snippets.

@thingsiplay
Last active June 9, 2022 10:55
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 thingsiplay/dfdc68de53c0421a2e8b51539cf6a169 to your computer and use it in GitHub Desktop.
Save thingsiplay/dfdc68de53c0421a2e8b51539cf6a169 to your computer and use it in GitHub Desktop.
Cleaner output font name output when searching for font
#!/bin/sh
fc-list \
| grep -ioE ": [^:]*$1[^:]+:" \
| sed -E 's/(^: |:)//g' \
| tr , \\n \
| sort \
| uniq
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment