Created
June 27, 2015 15:47
-
-
Save keopx/96164c7ceeff28d6148b to your computer and use it in GitHub Desktop.
Actualiza y limpia tu Linux con una sola orden
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function update () { | |
sudo apt-get update -y && echo "" && \ | |
sudo apt-get dist-upgrade -y && echo "" && \ | |
sudo apt-get upgrade -y && echo "" && \ | |
sudo apt-get autoremove -y && echo "" && \ | |
sudo localepurge && echo "" && \ | |
sudo deborphan | xargs sudo apt-get remove -y --purge && echo "" && \ | |
sudo apt-get autoclean -y && echo "" && \ | |
sudo apt-get moo | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment