Skip to content

Instantly share code, notes, and snippets.

@alekratz
Last active May 5, 2024 23:19
Show Gist options
  • Save alekratz/838a3d5b9b679eee8c81 to your computer and use it in GitHub Desktop.
Save alekratz/838a3d5b9b679eee8c81 to your computer and use it in GitHub Desktop.
Pacman aliases
# pacman aliases
alias pac='pacman -S' # install
alias pacu='pacman -Syu' # update, add 'a' to the list of letters to update AUR packages if you use yaourt
alias pacr='pacman -Rs' # remove
alias pacs='pacman -Ss' # search
alias paci='pacman -Si' # info
alias paclo='pacman -Qdt' # list orphans
alias pacro='paclo && sudo pacman -Rns $(pacman -Qtdq)' # remove orphans
alias pacc='pacman -Scc' # clean cache
alias paclf='pacman -Ql' # list files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment