Update cheatsheets

This commit is contained in:
ivuorinen
2025-08-27 00:19:48 +00:00
parent 114611fd19
commit 9565d2532c
21 changed files with 167 additions and 54 deletions

View File

@@ -15,3 +15,15 @@ source: https://github.com/tldr-pages/tldr.git
- Write the output of a pipeline to the journal (`stderr` stays connected to the terminal):
`{{command}} | systemd-cat`
- Use the specified identifier (default: `cat` when reading from a pipeline, executable name otherwise):
`{{command}} | systemd-cat {{[-t|--identifier]}} {{id}}`
- Use the specified default priority level for all logged messages:
`systemd-cat {{[-p|--priority]}} {{emerg|alert|crit|err|warning|notice|info|debug}} {{command}}`
- Use the specified default priority level for the logged messages from the command's `stderr`:
`systemd-cat --stderr-priority {{emerg|alert|crit|err|warning|notice|info|debug}} {{command}}`