I have a bunch of different processes (mostly shell scripts) that need to start at a specific time, and then need to be killed some hours later. Right now I start them via cron and then use another cron job to get the process ID and kill them. Not the cleanest way, especially if there are multiple copies of the same script running.
I was wondering if there was some kind of a wrapper available that would start a process (in a subshell? or fork?) and then kill it at a given time. Googling didn't yield much, so I wanted to check with the all-knowing stackoverflow community before diving in to write my own.
Thanks!