Skip to content

Instantly share code, notes, and snippets.

@AbhishekGhosh
Created May 22, 2015 06:50
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 AbhishekGhosh/790c9593048adee4735b to your computer and use it in GitHub Desktop.
Save AbhishekGhosh/790c9593048adee4735b to your computer and use it in GitHub Desktop.
List All Packages Ubuntu
#!/bin/bash -e
#
# written by Dr. Abhishek Ghosh
# under GNU GPL 3.0
clear
( zcat $( ls -tr /var/log/apt/history.log*.gz ) ; cat /var/log/apt/history.log ) | egrep '^(Start-Date:|Commandline:)' | grep -v aptdaemon | egrep '^Commandline:'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment