Quick Linux Tip #5:
Try: crontab -e
Info: crontab -e opens the editor for scheduled tasks. Format: minute hour day month weekday command.
Examples:
- $ crontab -e
- $ crontab -l
- $ crontab -r
Note: Use journalctl -u cron to inspect active execution logs. Always use full path variables in your commands.
Leave a Reply