Problem Statement
Which command schedules a one-time job to run later?
Explanation
The at command runs a command once at a specific future time.
It’s useful for delayed tasks like log rotation or temporary file cleanup.
Code Solution
SolutionRead Only
echo 'rm /tmp/tempfile' | at 3:00 AM
Practice Sets
This question appears in the following practice sets: