Reputation: 441
I wand to add this to the crontab 3,8,13,18,23,28,33,38,43,48 * * * * foo.sh. Is there a way to write this in a less verbose manner?
3,8,13,18,23,28,33,38,43,48 * * * * foo.sh
Upvotes: 1
Views: 58
Reputation: 11090
3-48/5 * * * * foo.sh
should do the trick
Upvotes: 3