mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-31 04:41:47 +00:00
19 lines
345 B
Plaintext
19 lines
345 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# atrm
|
|
|
|
> Remove jobs scheduled by `at` or `batch` commands.
|
|
> To find job numbers use `atq`.
|
|
> More information: <https://manned.org/atrm>.
|
|
|
|
- Remove job number 10:
|
|
|
|
`atrm {{10}}`
|
|
|
|
- Remove many jobs, separated by spaces:
|
|
|
|
`atrm {{15}} {{17}} {{22}}`
|