1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2024-10-28 17:39:49 +01:00
tldr/pages/linux/aurman.md
K.B.Dharun Krishna 2135714193
pages/*, style-guide: update contents, fix Markdown (#10492)
* pages/*, style-guide: update pages, fix Markdown (commit 1)

* Update pages

* style-guide.de: update page

* Apply suggestions from code review

Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com>

* Apply suggestions from code review

Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com>

* pip3: remove search command

* rpm: update path placeholder

Co-authored-by: pixel <pixel+github@chrissx.de>

* Update pages/linux/pkgfile.md

Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com>

---------

Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com>
Co-authored-by: pixel <pixel+github@chrissx.de>
2023-08-26 23:00:06 +05:30

37 lines
957 B
Markdown

# 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}}`
- Install a new package without show changes of `PKGBUILD` files:
`aurman --sync --noedit {{package}}`
- Install a new package without prompting:
`aurman --sync --noedit --noconfirm {{package}}`
- 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}}`
- Clear the package cache (use two `--clean` flags to clean all packages):
`aurman --sync --clean`