Skip to content

Commit

Permalink
docs: fix file extension in package list scanning (#1733)
Browse files Browse the repository at this point in the history
  • Loading branch information
b31ngd3v authored Jul 5, 2022
1 parent 9e205be commit 8939d22
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -226,11 +226,11 @@ For further information about all of these options, please see [the CVE Binary T

You can get a package list of all installed packages in

- a system using dpkg package manager by running `dpkg-query -W -f '${binary:Package}\n' > pkg-list`
- a system using pacman package manager by running `pacman -Qqe > pkg-list`
- a system using rpm package manager by running `rpm -qa --queryformat '%{NAME}\n' > pkg-list`
- a system using dpkg package manager by running `dpkg-query -W -f '${binary:Package}\n' > pkg-list.txt`
- a system using pacman package manager by running `pacman -Qqe > pkg-list.txt`
- a system using rpm package manager by running `rpm -qa --queryformat '%{NAME}\n' > pkg-list.txt`

in the terminal and provide it as an input by running `cve-bin-tool -L pkg-list` for a full package scan.
in the terminal and provide it as an input by running `cve-bin-tool -L pkg-list.txt` for a full package scan.

## Configuration

Expand Down

0 comments on commit 8939d22

Please sign in to comment.