Cron Expression

Every minute

Quick Presets

Visual Builder

Next Scheduled Runs

Usage Examples

# Edit crontab
crontab -e
# Add a job
* * * * * /path/to/script.sh
# With logging
* * * * * /path/to/script.sh >> /var/log/myjob.log 2>&1
# List current jobs
crontab -l