mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-31 19:42:07 +00:00
22 lines
393 B
Plaintext
22 lines
393 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# atq
|
|
|
|
> Show jobs scheduled by `at` or `batch` commands.
|
|
> More information: <https://manned.org/atq>.
|
|
|
|
- Show the current user's scheduled jobs:
|
|
|
|
`atq`
|
|
|
|
- Show jobs from the 'a' [q]ueue (queues have single-character names):
|
|
|
|
`atq -q {{a}}`
|
|
|
|
- Show jobs of all users (run as superuser):
|
|
|
|
`sudo atq`
|