/ Published in: Bash
List all packages that are installed in your system
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
dpkg -l # you can alternatively search for packages using the following dpkg -l | grep [enter_search_term_here] # or if you like shortcuts, here is one that you can put in ~/.bashrc or ~/.bash_profile # instead type in dpkg ... you can use : find_package "name_of_package" find_package () { dpkg -l | grep "$1"; }