This command ps -ef | grep php returns a list of processes
I want to kill in one command or with a shell script all those processes
Thanks
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The easiest way to kill all commands with a given name is to use
killall:Note, this only sends an interrupt signal. This should be enough if the processes are behaving. If they’re not dying from that, you can forcibly kill them using