Understanding Cron guru every 15 minutes

The cron command-line utility is also known as a cron job. it is a job scheduler on Unix-like operating systems. Users who configure and manage software environments use cron to schedule jobs to run periodically at fixed times, dates, or intervals. usually, we can use it for executing different commands according to our fixed dates and times.

Run cron every 15 minutes

on Jan 01, 1970
*/15 * * * *

Add Comment

0

In this Above mention code

  1. The Asterisk operator means it can give permission to add all values
  2. The hyphen operator allows you can add only specific values.
  3. The comma operator allows you can add a list of values for the repetition process.

Whatever answers related to "Cron guru every 15 minutes"

View All Whatever queries

Whatever queries related to "Cron guru every 15 minutes"

Browse Other Code Languages

CodeProZone