adding a beefier upgrade option

This commit is contained in:
Brad Ganley 2023-02-26 05:17:30 -06:00
parent 829579ca90
commit 5a016d14ed

View File

@ -3,6 +3,8 @@
alias inst='sudo apt-get install -y' alias inst='sudo apt-get install -y'
# Do a basic update. Ubuntu only # Do a basic update. Ubuntu only
alias update='sudo apt-get update -y && sudo apt-get upgrade -y' alias update='sudo apt-get update -y && sudo apt-get upgrade -y'
# Upgrade the fuck out of just fucking everything
alias upgrade_all='sudo apt-get update -y && sudo apt-get upgrade -y && sudo apt-get dist-upgrade -y && sudo apt-get autoremove -y && sudo apt-get autoclean -y && sudo apt-get --with-new-pkgs upgrade -y'
# Search packages. Ubuntu Only # Search packages. Ubuntu Only
alias pacs='apt-cache search' alias pacs='apt-cache search'
# Uninstall. Ubuntu only. # Uninstall. Ubuntu only.