mirror of
https://github.com/chubin/cheat.sheets
synced 2024-11-11 01:10:31 +00:00
28 lines
521 B
Plaintext
28 lines
521 B
Plaintext
# present package selection menu
|
|
yay [Search Term]
|
|
|
|
# print system statistics
|
|
yay -Ps
|
|
|
|
# print update list
|
|
yay -Pu
|
|
|
|
# clean unneeded dependencies
|
|
yay -Yc
|
|
|
|
# downloads PKGBUILD from ABS or AUR
|
|
yay -G
|
|
|
|
# generates development package
|
|
# DB used for devel updates.
|
|
yay -Y --gendb
|
|
|
|
# normal update but also check for development package updates
|
|
# and use PKGBUILD modification time and not version to determine update
|
|
yay -Syu --devel --timeupdate
|
|
|
|
# instalation
|
|
git clone https://aur.archlinux.org/yay.git
|
|
cd yay
|
|
makepkg -si
|