How to terminate multiple processes of the same name at a time
Skills administrator (2000-12-23 09:32) 〖Back〗〗 Forward〗
PS -AUX | GREP CSH assumption: root 1345 1345 ......... / bin / csh root 2434 2434 ......... / bin / csh root 3678 3678 ......... GREP CSH 2. Execute a kill command: kill 1345 2434 and if we use The FUSER command can be executed: fuser -k / bin / csh is also the same as the above work!