add pacown and pacblame aliases
This commit is contained in:
parent
3ccdaa967d
commit
be24df6e8d
2 changed files with 17 additions and 0 deletions
|
@ -54,3 +54,8 @@ Aliases
|
|||
|
||||
* `pacol` list orphan packages
|
||||
* `pacor` remove all orphan packages
|
||||
|
||||
### Ownership
|
||||
|
||||
* `pacown` list all files provided by a given package
|
||||
* `pacblame` show package(s) that own a specified file
|
||||
|
|
|
@ -69,6 +69,7 @@ alias pacs='pacman -Ss'
|
|||
# search for the package in the local repository
|
||||
alias pacS='pacman -Qs'
|
||||
|
||||
|
||||
#
|
||||
# Orphans
|
||||
#
|
||||
|
@ -78,3 +79,14 @@ alias pacol='pacman -Qdt'
|
|||
|
||||
# remove orphan packages
|
||||
alias pacor='sudo pacman -Rns $(pacman -Qtdq)'
|
||||
|
||||
|
||||
#
|
||||
# Ownership
|
||||
#
|
||||
|
||||
# list all files that belong to a package
|
||||
alias pacown='pacman -Ql'
|
||||
|
||||
# show package(s) owning the specified file
|
||||
alias pacblame='pacman -Qo'
|
||||
|
|
Loading…
Reference in a new issue