| name | c-cron |
| description | Manage cron jobs and macOS launchctl services — schedule recurring tasks, start/stop services using lunchy-go. |
| tags | ["cron","scheduling","launchctl","automation"] |
Scheduling & Cron
lunchy-go (launchctl wrapper)
Friendly wrapper around macOS launchctl:
lunchy-go ls
lunchy-go ls redis
lunchy-go start com.example.service
lunchy-go start redis
lunchy-go stop redis
lunchy-go restart redis
lunchy-go status redis
crontab (built-in)
Standard Unix cron scheduler:
crontab -l
crontab -e
Guidelines
- Prefer lunchy-go for macOS services (launchd plists)
- Use crontab for simple recurring commands
- Always use full paths in cron jobs
- Redirect output to log files:
command >> /tmp/cron.log 2>&1
- Test commands manually before scheduling them