K3cs1

Full Ubuntu update

Jun 9th, 2020
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.28 KB | None | 0 0
  1. # Full Ubuntu update >> ~/.bashrc
  2. update () {
  3.         echo "Starting full system update..."
  4.         sudo apt update -qq
  5.         sudo apt dist-upgrade -yy
  6.         sudo apt autoremove -yy
  7.         sudo apt clean
  8.         echo "Update Comlete!"
  9.         return
  10. }
  11. export -f update
Advertisement
Add Comment
Please, Sign In to add comment