1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00

fc-list: update page & add Spanish translation (#15423)

This commit is contained in:
Ulices 2025-01-04 18:56:09 +00:00 committed by GitHub
parent e7c846137c
commit 8aaef7c348
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 32 additions and 0 deletions

View file

@ -0,0 +1,24 @@
# fc-list
> Lista las fuentes disponibles instaladas en el sistema.
> Más información: <https://manned.org/fc-list>.
- Devuelve una lista de las fuentes instaladas en su sistema:
`fc-list`
- Devuelve una lista de las fuentes instaladas con el nombre dado:
`fc-list | grep '{{DejaVu Serif}}'`
- Devuelve el número de fuentes instaladas con el nombre dado:
`fc-list | wc -l`
- Devuelve una lista de las fuentes instaladas que soportan el idioma basado en su código de idioma:
`fc-list :lang={{jp}}`
- Devuelve una lista de las fuentes instaladas que contienen el glifo especificado por su código Unicode:
`fc-list :charset={{f303}}`

View file

@ -14,3 +14,11 @@
- Return the number of installed fonts in your system: - Return the number of installed fonts in your system:
`fc-list | wc -l` `fc-list | wc -l`
- Return a list of installed fonts that support the language based on its locale code:
`fc-list :lang={{jp}}`
- Return a list of installed fonts that contain the glyph specified by its Unicode code-point:
`fc-list :charset={{f303}}`