1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2024-10-28 23:17:58 +01:00

aurman: add page (#5386)

This commit is contained in:
Axel Navarro 2021-03-25 14:17:26 -03:00 committed by GitHub
parent de311e1749
commit d398c81811
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

37
pages/linux/aurman.md Normal file
View file

@ -0,0 +1,37 @@
# aurman
> An Arch Linux utility to build and install packages from the Arch User Repository.
> See also `pacman`.
> More information: <https://github.com/polygamma/aurman>.
- Synchronize and update all packages:
`aurman --sync --refresh --sysupgrade`
- Synchronize and update all packages without show changes of `PKGBUILD` files:
`aurman --sync --refresh --sysupgrade --noedit`
- Install a new package:
`aurman --sync {{package_name}}`
- Install a new package without show changes of `PKGBUILD` files:
`aurman --sync --noedit {{package_name}}`
- Install a new package without prompting:
`aurman --sync --noedit --noconfirm {{package_name}}`
- Search the package database for a keyword from the official repositories and AUR:
`aurman --sync --search {{keyword}}`
- Remove a package and its dependencies:
`aurman --remove --recursive --nosave {{package_name}}`
- Clear the package cache (use two `--clean` flags to clean all packages):
`aurman --sync --clean`