โฐCrontab
To properly configure crontab, we must edit the crontab file with the following command:
sudo crontab -u root -e
In the file, we must add the following command for the script to execute every 10 minutes
*/10 * * * * sh /path_to_file.sh
.

To well know how crontab works you can go to this site: https://crontab.guru/
Last updated
Was this helpful?