sudo apt update && sudo apt upgrade --yesCan write a bash script to reduce typing:
echo "sudo apt update && sudo apt upgrade --yes" > update_system.sh
chmod +x update_system.shThis can then be run using:
./update_system.shsudo apt update && sudo apt upgrade --yesCan write a bash script to reduce typing:
echo "sudo apt update && sudo apt upgrade --yes" > update_system.sh
chmod +x update_system.shThis can then be run using:
./update_system.sh