From 5a016d14ed891aabbfea3b38ad69536a7f0ad5a2 Mon Sep 17 00:00:00 2001 From: Brad Ganley Date: Sun, 26 Feb 2023 05:17:30 -0600 Subject: [PATCH] adding a beefier upgrade option --- .bash_aliases | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.bash_aliases b/.bash_aliases index 921fc0b..2fa7cf9 100755 --- a/.bash_aliases +++ b/.bash_aliases @@ -3,6 +3,8 @@ alias inst='sudo apt-get install -y' # Do a basic update. Ubuntu only 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 alias pacs='apt-cache search' # Uninstall. Ubuntu only.