1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-03-28 21:16:20 +01:00

dpkg-query: add Spanish translation (#15263)

This commit is contained in:
Igor Támara 2024-12-20 13:33:03 -05:00 committed by GitHub
parent 5be58de63c
commit ad23dff42d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -0,0 +1,24 @@
# dpkg-query
> Muestra información sobre paquetes instalados.
> Más información: <https://manned.org/dpkg-query.1>.
- Lista todos los paquetes instalados:
`dpkg-query --list`
- Lista de paquetes instalados que coinciden con un patrón:
`dpkg-query --list '{{libc6*}}'`
- Lista todos los archivos instalados por un paquete:
`dpkg-query --listfiles {{libc6}}`
- Muestra información sobre un paquete:
`dpkg-query --status {{libc6}}`
- Busca paquetes que tengan archivos que coincidan con un patrón:
`dpkg-query --search {{/etc/ld.so.conf.d}}`