Created
December 2, 2014 21:03
-
-
Save beng/4e95c4e0cafe85bb6eef to your computer and use it in GitHub Desktop.
A way to find all the stuff you manually installed on ubuntu via apt-get as found here: http://askubuntu.com/a/250530
This file contains 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
(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