Created
September 27, 2018 16:32
-
-
Save igemnace/c5033db29fb79df975d679bc47476dbb to your computer and use it in GitHub Desktop.
Convenience functions for working with my AUR scripts. Meant to be sourced in ~/.profile, ~/.bashrc, ~/.zshrc, etc.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
aur() { | |
aurget "$@" && aurinstall "$@" | |
} | |
aurdeps() { | |
aurget "$@" && aurinstall --asdeps "$@" | |
} | |
reaur() { | |
aurupdate "$@" && aurinstall "$@" | |
} | |
unaur() { | |
sudo pacman -Runs "$@" && aurremove "$@" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment