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

28
pages.zh/common/bpkg.md Normal file
View File

@@ -0,0 +1,28 @@
# bpkg
> 一个用于 Bash 脚本的包管理器。
> 更多信息:<https://github.com/bpkg/bpkg>。
- 更新本地索引:
`bpkg update`
- 全局安装一个包:
`bpkg install --global {{package}}`
- 在当前目录的子目录中安装一个包:
`bpkg install {{package}}`
- 全局安装特定版本的包:
`bpkg install {{package}}@{{version}} -g`
- 显示特定包的详细信息:
`bpkg show {{package}}`
- 运行一个命令,可以选定其参数:
`bpkg run {{command}} {{argument1 argument2 ...}}`