From 09d49f2cc555b2f50bd5db4584ed97a6df878cca Mon Sep 17 00:00:00 2001 From: Max Date: Thu, 17 Nov 2016 11:29:00 +0100 Subject: [PATCH] Add aptitude and apt + bower --- whatinstalled.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/whatinstalled.py b/whatinstalled.py index 94504c7..c552175 100644 --- a/whatinstalled.py +++ b/whatinstalled.py @@ -3,10 +3,10 @@ history_file = os.path.expanduser("~")+"/.bash_history" f = open(history_file,"r") -keywords = ["pip", "tar", "brew", "apt-get", "install", "luarocks", "easy_install", "gem", "npm"] +keywords = ["pip", "tar", "brew", "apt-get", "aptitude", "apt", "install", "luarocks", "easy_install", "gem", "npm", "bower"] for line in f: for item in keywords: if item in line: print(line[:-1]) - break \ No newline at end of file + break