1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages.zh/linux/aurman.md
千玄子 19e79cd10b
anbox, arch-chroot, archinstall, aurman: add Chinese translation (#6406)
* anbox: add Chinese translation

* arch-chroot: add Chinese translation

* archinstall: add Chinese translation

* aurman: add Chinese translation
2021-08-26 09:48:05 +08:00

37 lines
868 B
Markdown

# aurman
> 用来构建和安装 AUR 包的 Arch Linux 实用工具。
> 参见 `pacman`.
> 更多信息:<https://github.com/polygamma/aurman>.
- 同步并更新所有包:
`aurman --sync --refresh --sysupgrade`
- 同步并更新所有包但不显示 `PKGBUILD` 文件的变动:
`aurman --sync --refresh --sysupgrade --noedit`
- 安装一个新包:
`aurman --sync {{包名}}`
- 安装一个新包但不显示 `PKGBUILD` 文件的变动:
`aurman --sync --noedit {{包名}}`
- 无确认提示安装一个新包:
`aurman --sync --noedit --noconfirm {{包名}}`
- 在官方仓库和 AUR 的包数据库中查找关键字:
`aurman --sync --search {{关键字}}`
- 移除一个包及其依赖:
`aurman --remove --recursive --nosave {{包名}}`
- 清除包缓存(用两次 `--clean` 参数清除所有包缓存):
`aurman --sync --clean`