From d398c81811d2aeb7500cf45c83ed850f09c6e99a Mon Sep 17 00:00:00 2001 From: Axel Navarro Date: Thu, 25 Mar 2021 14:17:26 -0300 Subject: [PATCH] aurman: add page (#5386) --- pages/linux/aurman.md | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 pages/linux/aurman.md diff --git a/pages/linux/aurman.md b/pages/linux/aurman.md new file mode 100644 index 0000000000..cf74a87000 --- /dev/null +++ b/pages/linux/aurman.md @@ -0,0 +1,37 @@ +# aurman + +> An Arch Linux utility to build and install packages from the Arch User Repository. +> See also `pacman`. +> More information: . + +- 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`