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