program kill

2007-01-12 Thread Arseny Solokha
Hello! How can I kill the program at the defined time? For example, I need to kill mpg321 at 21.00 if it works. Arseny. ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any

Re: program kill

2007-01-12 Thread Chuck Swiger
On Jan 12, 2007, at 9:05 AM, Arseny Solokha wrote: How can I kill the program at the defined time? For example, I need to kill mpg321 at 21.00 if it works. Set up a cron job to run pkill mpg321 at the appropriate time, or use an at job if this is a one-shot deal. -- -Chuck