Update cheatsheets

This commit is contained in:
ivuorinen
2025-10-07 00:19:24 +00:00
parent 3e6fa5fca1
commit 4102fec4f8
26 changed files with 610 additions and 8 deletions

33
tldr/linux/paccheck Normal file
View File

@@ -0,0 +1,33 @@
---
syntax: markdown
tags: [tldr, linux]
source: https://github.com/tldr-pages/tldr.git
---
# paccheck
> Check installed packages on an Arch-based system to verify dependencies, integrity, and consistency.
> More information: <https://github.com/andrewgregory/pacutils/blob/master/doc/paccheck.pod>.
- List and check all installed packages:
`paccheck`
- Check the specified packages:
`paccheck {{package1 package2 ...}}`
- Only display messages if a problem is found:
`paccheck --quiet`
- Check that all package dependencies are satisfied:
`paccheck --depends`
- Display help:
`paccheck --help`
- Display version:
`paccheck --version`