0
I have a program that outputs stuff to standard output. I am using cron to schedule it which is fine because I am collecting the stuff that it prints outs via email and do some statistical work on that. I would like this to go on essentially forever.
Similar to question 538622, I would also like the job to "re-submit" itself when done. This can not be done via an infinite-loop script because I need to continously collect what gets emailed from cron.
If possible, I would also like to have N jobs going on in parallel when the computer has N CPU's.
So far, I have scheduled the jobs to run every X minute but since the computer is used by others, this is not very efficient use of time and there is a risk of filling up the machine with my jobs which take longer and longer time (so that X minutes in not enough).
Any idea on how to do this?
This would solve my task but it looses the nice feature of letting cron taking care of emailing standard output. – None – 2015-05-08T06:04:46.173