Update cheatsheets

This commit is contained in:
ivuorinen
2024-02-21 11:19:49 +00:00
parent 4e88a1b42f
commit 3d653cc7e6
4803 changed files with 127002 additions and 0 deletions

42
linux/aurman Normal file
View File

@@ -0,0 +1,42 @@
---
syntax: markdown
tags: [tldr, linux]
source: https://github.com/tldr-pages/tldr.git
---
# 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`