Update cheatsheets

This commit is contained in:
ivuorinen
2025-10-17 00:19:47 +00:00
parent b18a761896
commit aa594e72af
88 changed files with 444 additions and 114 deletions

View File

@@ -0,0 +1,25 @@
---
syntax: markdown
tags: [tldr, linux]
source: https://github.com/tldr-pages/tldr.git
---
# systemctl list-timers
> List all active systemd timers.
> More information: <https://www.freedesktop.org/software/systemd/man/systemctl.html#list-timers%20PATTERN…>.
- List all active timers:
`systemctl list-timers`
- List all timers, including inactive ones:
`systemctl list-timers {{[-a|--all]}}`
- List timers matching a pattern:
`systemctl list-timers {{pattern}}`
- List timers matching a specific state:
`systemctl list-timers --state {{active|inactive|failed|...}}`