cron job every 10 minutess code example
Example 1: run cron every 15 minutes
*/15 * * * *
Example 2: cron job every 10 minutes
*/10 * * * * will run every 10 min.
Example 3: cron job every 10 seconds
*/10 * * * * * will run every 10 sec.
*/15 * * * *
*/10 * * * * will run every 10 min.
*/10 * * * * * will run every 10 sec.