mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-26 11:33:59 +00:00
42 lines
767 B
Plaintext
42 lines
767 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 log events for a specific package:
|
|
|
|
`paclog --package {{package_name}}`
|
|
|
|
- Display package actions of a specific type:
|
|
|
|
`paclog --action {{install|reinstall|upgrade|downgrade|remove|all}}`
|
|
|
|
- Display only errors, warnings, and notes:
|
|
|
|
`paclog --warnings`
|
|
|
|
- Display the list of installed packages according to the log:
|
|
|
|
`paclog --pkglist`
|
|
|
|
- Display help:
|
|
|
|
`paclog --help`
|
|
|
|
- Display version:
|
|
|
|
`paclog --version`
|