How to batch kill multiple processes under Linux

Source: Internet
Author: User

Transfer from http://www.jb51.net/LINUXjishu/43534.html

Ps-ef|grep tt.py|grep-v grep|cut-c 9-15|xargs kill-9

Pipe symbol "|" Used to separate two commands, the output from the left command of the pipe character is entered as the command to the right of the pipe. Let's talk about the connection with the pipe symbol.

Several commands:

"Ps-ef" is a command in red Hat to view all processes. The retrieved process is then entered as the next command "grep tt.py".

The output of "grep tt.py" is that all processes that contain the keyword "tt.py"

Grep-v grep removes the process that contains the keyword "grep" in the listed process.

"Cut-c 9-15" is the 9th character to the 15th character of the input line, which is exactly the process number PID.

The Xargs command in "Xargs kill-9" is used to take the output (PID) of the preceding command as a parameter to the "kill-9" command and execute the order.

"Kill-9" will forcibly kill the specified process.

How to batch kill multiple processes under Linux

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.