Build and visualize cron schedules with ease
Runs at minute 0 past 9:00 on Monday through Friday
Use * for all, comma-separated values (0,15,30), ranges (0-30), or intervals (*/15)
# Add to crontab (crontab -e)
0 9 * * 1-5 /path/to/command
# Example with logging
0 9 * * 1-5 /usr/bin/backup.sh >> /var/log/backup.log 2>&1