Fix add more methods to ppa

This commit is contained in:
Travis Burtrum 2018-09-08 15:52:17 -04:00
parent 0953112db9
commit 92a9741c4c
1 changed files with 9 additions and 2 deletions

11
ppa
View File

@ -161,9 +161,16 @@ list_official_packages() {
ls | xargs -n1 -I {} pacman -Ss '^{}$' | egrep -v "^($repo_name| )"
}
list_installed_paclist() {
paclist $repo_name | cut -d' ' -f1
}
list_installed() {
comm -12 <(pacman -Qq | sort) <(pacman -Slq $repo_name | sort)
}
reinstall() {
paclist $repo_name | cut -d' ' -f1 | xargs sudo pacman -S --noconfirm
comm -12 <(pacman -Qq | sort) <(pacman -Slq $repo_name | sort) | xargs sudo pacman -S --noconfirm
list_installed | xargs sudo pacman -S --noconfirm
}
clean() {