dotfiles/zsh/pacman_common.zsh
2016-02-23 01:07:54 +03:00

8 lines
197 B
Bash

# redefine pacman and yaourt
pacman() {
/usr/bin/sudo /usr/bin/pacman $* && echo "$*" | grep -q "S\|R\|U" && rehash
}
yaourt() {
/usr/bin/yaourt $* && echo "$*" | grep -q "S\|R\|U" && rehash
}