How to interpret this crontab command?
- by Bakhtiyor
I know that if I wrote in crontab -e following command 01 04 * * * somecommand then it will run somecommand at 4:01am on every day of every month.
What happens if I wrote * * * * * somecommand? Will it run somecommand every single minute? Will this syntax work also?
And it is possible to use special strings like @reboot, @daily, etc as it is explained here. At what time of the day somecommand will be executed if I write @daily somecommand command?