1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-06-05 13:05:59 +02:00

pacaur: add page

This commit is contained in:
Austin Albrecht 2018-01-13 19:04:59 +01:00
parent 9a7a4503d6
commit 508cc16d50
No known key found for this signature in database
GPG key ID: 4B1AFDC8F4570D7A

27
pages/linux/pacaur.md Normal file
View file

@ -0,0 +1,27 @@
# pacaur
> A utility for Arch Linux to build and install packages from the Arch User Repository.
- Synchronize and update all packages (includes AUR):
`pacaur -Syu`
- Synchronize and update only AUR packages:
`pacaur -Syua`
- Install a new package (includes AUR):
`pacaur -S {{package_name}}`
- Remove a package and its dependencies (includes AUR packages):
`pacaur -Rs {{package_name}}`
- Search the package database for a keyword (includes AUR):
`pacaur -Ss {{keyword}}`
- List all currently installed packages (includes AUR packages):
`pacaur -Qs`