mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-03 20:43:39 +00:00
26 lines
591 B
Plaintext
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|...}}`
|