Skip to content

What is the MacOS cron command?

With the cron command on MacOS, you can schedule recurring tasks, automate system maintenance, and run scripts at specific times without user intervention.

Terminal window
cron [options] [expression]
OptionDescription
-lList all cron jobs for the current user.
-eEdit the current user’s crontab file.
-rRemove the current user’s crontab file.
-iPrompt before removing the current user’s crontab file.
-sDisplay the current user’s crontab file.
-cCheck for and report any syntax errors in the current user’s crontab file.
ParameterDescription
expressionSpecifies the schedule for the cron job. This is a string that includes information such as the time, day, date, and command to be executed.
Terminal window
0 * * * * /path/to/your/script.sh

This example will execute the script located at “/path/to/your/script.sh” every hour.

Terminal window
0 2 * * * /bin/bash /path/to/backup.sh

This cron job will run the backup script “/path/to/backup.sh” at 2:00 AM every day.

Terminal window
0 0 * * 6 /bin/systemctl restart myservice

This command will restart the “myservice” service every Saturday at midnight.

Terminal window
0 8 1 * * mail -s "Monthly Reminder" user@example.com

Sends an email with the subject “Monthly Reminder” to “user@example.com” at 8:00 AM on the 1st of every month.

Terminal window
0 3 * * * find /path/to/temp -mtime +7 -exec rm {} \;

Deletes files older than 7 days in the “/path/to/temp” directory every day at 3:00 AM.

To schedule a cron job in MacOS, use the following command:

Terminal window
cron -e

How do I list all scheduled cron jobs in MacOS?

Section titled “How do I list all scheduled cron jobs in MacOS?”

To list all scheduled cron jobs in MacOS, execute the following command:

Terminal window
crontab -l

How do I edit the crontab in MacOS using a text editor?

Section titled “How do I edit the crontab in MacOS using a text editor?”

To edit the crontab in MacOS using a text editor, run the following command:

Terminal window
crontab -e

How do I remove all scheduled cron jobs in MacOS?

Section titled “How do I remove all scheduled cron jobs in MacOS?”

To remove all scheduled cron jobs in MacOS, use the following command:

Terminal window
crontab -r

How do I check the status of the cron service in MacOS?

Section titled “How do I check the status of the cron service in MacOS?”

To check the status of the cron service in MacOS, execute the following command:

Terminal window
launchctl list | grep cron

How do I enable the cron service in MacOS?

Section titled “How do I enable the cron service in MacOS?”

To enable the cron service in MacOS, run the following command:

Terminal window
sudo launchctl load -w /System/Library/LaunchDaemons/com.vix.cron.plist

How do I disable the cron service in MacOS?

Section titled “How do I disable the cron service in MacOS?”

To disable the cron service in MacOS, use the following command:

Terminal window
sudo launchctl unload /System/Library/LaunchDaemons/com.vix.cron.plist

How do I set environment variables for a cron job in MacOS?

Section titled “How do I set environment variables for a cron job in MacOS?”

To set environment variables for a cron job in MacOS, you can do the following by editing the crontab:

Terminal window
SHELL=/bin/bash
PATH=/usr/local/bin:/usr/bin:/bin
{command to be executed}
  • Automating tasks
  • Scheduling backups
  • Updating software
  • Running maintenance scripts
  • Monitoring system health
  • Sending notifications
  • Generating reports