Schedule Recurring User Jobs Flashcards
1
Q
What command displays the current date?
A
date
2
Q
What command opens crontab file with the deault text editor?
A
crontab -e
3
Q
What command lists the scheduled recurring jobs?
A
crontab -l
4
Q
What command runs a loop and sleeps for one second?
A
while ! test -f <output>; do sleep 1s; done</output>
5
Q
What command removes all scheduled recurring jobs?
A
crontab -r