Update cheatsheets

This commit is contained in:
ivuorinen
2025-10-08 00:19:16 +00:00
parent 4102fec4f8
commit 52f5647220
45 changed files with 1002 additions and 38 deletions

37
tldr/linux/paclog Normal file
View File

@@ -0,0 +1,37 @@
---
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`