Files
HomeLab/Xubuntu-Daily/900-xubuntu-update.sh
2021-03-06 18:46:53 +01:00

11 lines
272 B
Bash
Executable File

echo Updating...
start=`date +%s`
sudo apt update -y &> /dev/null &&
echo Upgrading...
sudo apt upgrade -y &> /dev/null &&
echo Removing Old Packages...
sudo apt auto-remove -y &> /dev/null
end=`date +%s`
runtime=$((end-start))
echo Total Update Time: ${runtime} seconds!