From 5c23f374e4723befd0ce312c6aba554c7fa7f6d1 Mon Sep 17 00:00:00 2001 From: Lev Lamberov Date: Sat, 9 Mar 2019 10:17:46 +0500 Subject: [PATCH] Fix action (-I -> -l) dpkg -I (capital i) is for showing information about a package. dpkg -l (lowercase l) is for listing packages matching given pattern. So, here is a fix for the typo. --- cheat/cheatsheets/dpkg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cheat/cheatsheets/dpkg b/cheat/cheatsheets/dpkg index 76eca1b..8117e98 100644 --- a/cheat/cheatsheets/dpkg +++ b/cheat/cheatsheets/dpkg @@ -5,7 +5,7 @@ dpkg -i test.deb dpkg -P test.deb # List all installed packages with versions and details -dpkg -I +dpkg -l # Find out if a Debian package is installed or not dpkg -s test.deb | grep Status