mirror of https://github.com/cheat/cheat.git
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.
This commit is contained in:
parent
5487314676
commit
5c23f374e4
|
@ -5,7 +5,7 @@ dpkg -i test.deb
|
||||||
dpkg -P test.deb
|
dpkg -P test.deb
|
||||||
|
|
||||||
# List all installed packages with versions and details
|
# List all installed packages with versions and details
|
||||||
dpkg -I
|
dpkg -l
|
||||||
|
|
||||||
# Find out if a Debian package is installed or not
|
# Find out if a Debian package is installed or not
|
||||||
dpkg -s test.deb | grep Status
|
dpkg -s test.deb | grep Status
|
||||||
|
|
Loading…
Reference in New Issue