Skip to content

Instantly share code, notes, and snippets.

@zfenj
Forked from alekratz/.aliases
Created August 29, 2019 07:36
Show Gist options
  • Save zfenj/844763c70519edacbb1fda130f544cee to your computer and use it in GitHub Desktop.
Save zfenj/844763c70519edacbb1fda130f544cee 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