mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-01 16:42:35 +00:00
38 lines
685 B
Plaintext
38 lines
685 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, linux]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# paclog
|
|
|
|
> Filter pacman log entries.
|
|
> More information: <https://github.com/andrewgregory/pacutils/blob/master/doc/paclog.pod>.
|
|
|
|
- Display the entire pacman log:
|
|
|
|
`paclog`
|
|
|
|
- Display pacman-style logged commandline entries:
|
|
|
|
`paclog --commandline`
|
|
|
|
- Display only errors, warnings, and notes:
|
|
|
|
`paclog --warnings`
|
|
|
|
- Display package name and action type:
|
|
|
|
`paclog --package {{package_name}} --action {{install|upgrade|remove|...}}`
|
|
|
|
- Display the list of installed packages according to the log:
|
|
|
|
`paclog --pkglist`
|
|
|
|
- Display help:
|
|
|
|
`paclog --help`
|
|
|
|
- Display version:
|
|
|
|
`paclog --version`
|