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:
Lev Lamberov 2019-03-09 10:17:46 +05:00 committed by GitHub
parent 5487314676
commit 5c23f374e4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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