This commit is contained in:
cercatrova21 2023-03-01 16:03:35 +01:00
parent cb695c1df9
commit 3c59a80134

View File

@ -2,3 +2,11 @@
sudo apt update sudo apt update
sudo apt list --upgradable sudo apt list --upgradable
echo "Would you like to upgrade? (Y/N): "
read upgrade
if [upgrade == "Y"]
then
sudo apt upgrade -y
fi