Comment by victorbjorklund 10 hours ago Cool. Had no idea you could run commands inside a CRON expression. 1 comment victorbjorklund Reply garganzol 9 hours ago Running a command is the main idea of cron. In this case, the author runs composite commands like: test && action Where 'test' is another shell command that returns 0 or 1. This is not a special cron syntax, it's just the inherent capability of the Unix shell.In any case, this whole approach is very clever and shows the beauty of The Unix Way.
garganzol 9 hours ago Running a command is the main idea of cron. In this case, the author runs composite commands like: test && action Where 'test' is another shell command that returns 0 or 1. This is not a special cron syntax, it's just the inherent capability of the Unix shell.In any case, this whole approach is very clever and shows the beauty of The Unix Way.
Running a command is the main idea of cron. In this case, the author runs composite commands like:
Where 'test' is another shell command that returns 0 or 1. This is not a special cron syntax, it's just the inherent capability of the Unix shell.
In any case, this whole approach is very clever and shows the beauty of The Unix Way.