|
|
|
|
|
|
|
|
|
|
ps -ef | grep flaskFind all flask processes.grep -v grepFilter process lines containing grep.awk '{print $2}'The parameter in the second column of the extracted process row record is the process number of the flask.xargs kill -9Pass all the preceding arguments to the following command kill -9.