On Tue, Aug 22, 2000 at 09:50:25AM +1000, Terry Collins wrote: > list process | grep desired-process | kill desired-process > > Can someone tell me the format of the last part? > > ps axf | grep process | kill -9 "process???" If they are all 5 digit pids, you can use ps axf | grep process | cut -d' ' -f1 | xargs kill For 4 digit pids, you need to use -f2 in the cut. Cheers, Malcolm -- Malcolm Tredinnick email: [EMAIL PROTECTED] CommSecure Pty Ltd
- [SLUG] Select and kill running process Terry Collins
- RE: [SLUG] Select and kill running process Aravind Naidu
- Re: [SLUG] Select and kill running process Ben Leslie
- Re: [SLUG] Select and kill running process Umar Goldeli
- Re: [SLUG] Select and kill running process Malcolm Tredinnick
- Re: [SLUG] Select and kill running process Stuart Cooper
- Re: [SLUG] Select and kill running process Umar Goldeli
- Re: [SLUG] Select and kill running process Jobst Schmalenbach
- RE: [SLUG] Select and kill running process Aravind Naidu
- Re: [SLUG] Select and kill running process Stuart Cooper
- RE: [SLUG] Select and kill running process Jill Rowling
- Re: [SLUG] Select and kill running process Herbert Xu
- Re: [SLUG] Select and kill running process Andrew Reilly