Cronjob
A cron job is a linux command used for scheduling tasks
To open crontab, where we will schedule jobs
sh
crontab -eThese below five * represent the following: Minute Hour Day Month Weekday
sh
* * * * * /usr/bin/git pullTo check the logs
sh
grep CRON /var/log/syslogTo output no logs
sh
* * * * * yourCommand >/dev/null 2>&1To list all cron jobs
sh
crontab -l