mirror of
https://github.com/arcan1s/dotfiles.git
synced 2025-04-24 16:07:17 +00:00
8 lines
197 B
Bash
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
|
|
}
|