add new chinese translations

This commit is contained in:
2024-12-30 15:25:56 +08:00
parent a850046d7b
commit 0d798759fd
5418 changed files with 105800 additions and 7052 deletions

View File

@@ -0,0 +1,24 @@
# dpkg-query
> 显示已安装软件包的信息。
> 更多信息: <https://manned.org/dpkg-query.1>。
- 列出所有已安装的软件包:
`dpkg-query --list`
- 列出与模式匹配的已安装软件包:
`dpkg-query --list '{{libc6*}}'`
- 列出一个软件包安装的所有文件:
`dpkg-query --listfiles {{libc6}}`
- 显示一个软件包的信息:
`dpkg-query --status {{libc6}}`
- 搜索拥有与模式匹配的文件的软件包:
`dpkg-query --search {{/etc/ld.so.conf.d}}`