Create a Cronjob
Example cronjob within crontab:
Open up your crontab config file and add the following cronjob command:
* * * * * echo "$(date)" >> ~/Desktop/time.log
Run the command: crontab -e
and add the cronjob to the config file:
Write the file and navigate to your desktop. You should see the created time-log file created from the cronjob.
Validation
cat
out the time-log
file.
Recap:
- Add a cronjob to crontab file
- check file created from cronjob for validation