cron job shell script example
Example 1: add new cron job in linux
For editing the cron job file :
crontab -e
For listing all the running cron job
systemctl status cron ----OR---- crontab -l
Example 2: cronjob example
//Specify cron frequency
//e.g. run minute 0, every hour
0 */1 * * *
//enter a bash command to the script input field
//e.g. a wget command where the output isn't saved
wget -O- url_here >> /dev/null