Schedule Recurring User Jobs Flashcards

1
Q

What command displays the current date?

A

date

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What command opens crontab file with the deault text editor?

A

crontab -e

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What command lists the scheduled recurring jobs?

A

crontab -l

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What command runs a loop and sleeps for one second?

A

while ! test -f <output>; do sleep 1s; done</output>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What command removes all scheduled recurring jobs?

A

crontab -r

How well did you know this?
1
Not at all
2
3
4
5
Perfectly