Files
cheatsheet-tldr/tldr/linux/systemctl-list-timers
2026-01-13 00:19:20 +00:00

26 lines
591 B
Plaintext

---
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/latest/systemctl.html#list-timers%20PATTERN%E2%80%A6>.
- 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|...}}`