* Leonid <[EMAIL PROTECTED]> wrote: > We need this feature in the following situation: > ... > If wget process will gracefully commit harakiri before cron > will spawn the next wget process, this will really help.
It sounds like you need a lock file, or PID file, to prevent overlapping processes. Either check for the lock and don't re-run if it's there... or check for the PID file and kill off the old process before running a new one. It's fairly easy to do either one. -- Scott
