Skip to content

Instantly share code, notes, and snippets.

@tatapbl4
Created November 19, 2015 17:29
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 tatapbl4/bed3ea87b586bdaefea6 to your computer and use it in GitHub Desktop.
Save tatapbl4/bed3ea87b586bdaefea6 to your computer and use it in GitHub Desktop.
List packages to update with old and new version
apt-get --just-print upgrade 2>&1 | perl -ne 'if (/Inst\s([\w,\-,\d,\.,~,:,\+]+)\s\[([\w,\-,\d,\.,~,:,\+]+)\]\s\(([\w,\-,\d,\.,~,‌​:,\+]+)\)? /i) {print "PROGRAM: $1 INSTALLED: $2 AVAILABLE: $3\n"}' | column -s " " -t
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment