This file contains 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
alias update="sudo apt-get update" | |
alias upgrade="update && sudo apt-get upgrade" | |
alias dist-upgrade="upgrade && sudo apt-get dist-upgrade" | |
alias install="sudo apt-get install ${@:2}" | |
alias uninstall="sudo apt-get purge ${@:2}" | |
alias search="apt-cache search ${@:2}" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment