Problem Statement
Which command lists all cron jobs for the current user?
Explanation
crontab -l lists all scheduled cron jobs for the logged-in user.
It’s useful for verifying active automation tasks or debugging missed schedules.
Code Solution
SolutionRead Only
crontab -l
Practice Sets
This question appears in the following practice sets: