Skip to main content

Cron Expression: Every 1 Minute

Runs every single minute (same as * * * * *). Copy and use this cron expression: */1 * * * *

Every 1 Minute

Runs every single minute (same as * * * * *)

*/1 * * * *

Common Use Cases:

Real-time monitoring, live data feeds

Example Applications:

  • Server health checks
  • Live metrics
  • Real-time alerts

How to Use This Cron Expression

1. Linux/Unix Crontab:

*/1 * * * * /path/to/your/script.sh

2. Edit Your Crontab:

crontab -e

3. In CI/CD Systems:

Many CI/CD platforms (GitHub Actions, GitLab CI, etc.) use cron expressions for scheduled workflows. Use this expression in your workflow configuration files.

Create Custom Expressions

Need a different schedule? Use our interactive cron generator to create custom expressions.

Open Cron Generator

FAQ: Every 1 Minute Cron Expression

This cron expression (*/1 * * * *) runs every single minute (same as * * * * *). Simply copy the expression and add it to your crontab file or job scheduler. For example: */1 * * * * /path/to/your/script.sh