mirror of
https://github.com/chubin/cheat.sheets
synced 2024-11-19 03:25:44 +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
|