dotfiles/update.sh

12 lines
385 B
Bash
Executable File

#!/bin/bash
echo -e "\n########## START UPDATE ##########\n"
sudo apt-get update
echo -e "\n########## START UPGRADE ##########\n"
sudo apt-get upgrade
echo -e "\n########## START DIST-UPGRADE ##########\n"
sudo apt-get dist-upgrade
echo -e "\n########## START AUTOCLEAN ##########\n"
sudo apt-get autoclean
echo -e "\n########## START AUTOREMOVE ##########\n"
sudo apt-get autoremove