1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-29 22:15:38 +02:00

fc-list: add 2 new commands and examples (#3436)

This commit is contained in:
Robby Renz 2019-10-19 10:53:43 -05:00 committed by Starbeamrainbowlabs
parent ecebc82020
commit 7eb53efa9f

View file

@ -2,6 +2,14 @@
> List available fonts installed on the system. > List available fonts installed on the system.
- Return a list of installed fonts in your system:
`fc-list`
- Return a list of installed fonts with given name: - Return a list of installed fonts with given name:
`fc-list | grep '{{DejaVu Serif}}'` `fc-list | grep '{{DejaVu Serif}}'`
- Return the number of installed fonts in your system:
`fc-list | wc -l`