Use Cron to Automate Workflows and Scripts
Cron service on Ubuntu
Check if cron is installed
cron --version
Install cron (if missing)
sudo apt update
sudo apt install cron
Start and enable cron
sudo systemctl start cron
sudo systemctl enable cron
Check status
sudo systemctl status cron
Cr...
vijdaancoding.hashnode.dev2 min read