atrm
Quick Reference
Command Name:
atrm
Category:
process management
Platform:
linux
Basic Usage:
Common Use Cases
- 1
Job cancellation
Remove scheduled jobs from the queue
- 2
Queue management
Clean up unwanted or obsolete scheduled tasks
- 3
System maintenance
Remove jobs that are no longer needed
- 4
Error recovery
Remove failed or problematic scheduled jobs
Syntax
atrm [-V] job [job...]
Options
Option | Description |
---|---|
-V | Display version information |
job | The job number(s) to be removed |
Examples
How to Use These Examples
The examples below show common ways to use the atrm
command. Try them in your terminal to see the results. You can copy any example by clicking on the code block.
Basic Examples:
atrm 23
atrm 15 16 17
atq
Advanced Examples:
for job in $(atq | cut -f1); do