Can I set up a cron job to run every 15 minutes throughout the day, except for 3:00 AM? I have another task that I want to run at 3:00 AM and don't want these two conflicting.
Use three lines: */15 0-2,4-23 * * * outside the 3 AM hour, 15-45/15 3 * * * for 3:15-3:45, and 0 3 * * * for the other job. Cron has no 'except'.
