Skip to content

Instantly share code, notes, and snippets.

@ishu3101
Created June 27, 2014 08:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ishu3101/8fce67027299d9804cf8 to your computer and use it in GitHub Desktop.
Save ishu3101/8fce67027299d9804cf8 to your computer and use it in GitHub Desktop.
Easily maintain and clean up your Ubuntu packages using apt-get.
#!/bin/sh
# Usage: update or update -y to skip all prompts.
sudo apt-get update
sudo apt-get $1 upgrade --show-upgraded
sudo apt-get $1 dist-upgrade
sudo apt-get $1 autoremove
sudo apt-get autoclean
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment