how to use cronie in arch linux based - aliakbarRashidi/bashscriptin GitHub Wiki

  1. first u must install cronie package using below command: sudo pacman -S cronie --needed
  2. enable and start cronie service: sudo systemctl enable croine sudo systemctl start croine
  3. to check that croine start successfuly: sudo systemctl status croine in result of above command u can see if there is an error and can see what job executed until now by cronie(cron daemon in arch)
  4. to add new cron job: crontab -e
  5. and to check if executed successfuly: sudo systemctl status croine

================================================= sample script that send-notify on linux using bash script: sample script.sh

sample crontab -e content: sample cron file.txt