Scheduling future Linux tasks Flashcards
1
Q
What is * used for?
A
Used as “everyday” inside the crontab
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
3
Q
When is at used?
A
One time basis (ADHOC) - as needed