You are here: Home Posts Find process in terminal on linux

Find process in terminal on linux

by Nathan Van Gheem last modified Jan 03, 2009 12:52 PM
This simple commands helps in finding certain processes to kill in linux....

To find all the different processes that are running with python, do this:

 ps -auxx | grep 'python'

Document Actions