Create a cron job, see the Turkish explanation. Generate a valid cron job in seconds with minute/hour/day/month/day of the week options.
* * * * *
Croncron is a standard scheduling mechanism used to run tasks at specific intervals on Unix/Linux systems. Automated tasks on web servers, such as backups, email sending, database cleanup, or report generation, are often managed using cron. However, the syntax of the cron statement—five spaces separated by whitespace—can be confusing at first.
This is free. Cron Statement Generator This tool allows you to create the correct cron statement without knowing technical syntax. Select the minute, hour, day of the month, month, and day of the week fields from the drop-down lists; the tool instantly generates both the statement and a human-readable Turkish description. Copy the statement you created with a single click. crontab -e You can paste it into your line.
For those who want to get started quickly. ready-made templates Also offered: load the most frequently used scenarios with a single click, such as every minute, hourly, daily midnight, weekly Monday, and monthly first day. The entire process takes place entirely in your browser; no data is sent to the server.
crontab -e Open the editor with the command and paste the expression.*) means 'all values'. For example 0 9 * * 1 The expression means 'every Monday at 09:00'.crontab -e Run the command, then add a new line to the editor that opens, writing your cron statement and the command to be executed. Example: 0 0 * * * /usr/bin/php /var/www/backup.phpWhen you register it, the cron daemon automatically detects the expression.0 0 1 * 1 The expression is interpreted as 'the first day of the month OR Monday'. If you are targeting the intersection of both, you need to add extra checks within the script.