Scheduling future Linux tasks Flashcards

1
Q

What is * used for?

A

Used as “everyday” inside the crontab

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

Create a sample crontab entry.

A

22 13 * 3 * echo “First entry” > crontab-entry

22=minute
13=hour
*=day
3=month
*=day of the week
echo “first entry” > crontab-entry=command

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

When is at used?

A

One time basis (ADHOC) - as needed

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