Search code examples
pythonlinuxcentos

How to display list of running processes Python?


How to display list of running processes Python with full name and active status?

I tried this command: pgrep -lf python


Solution

  • Try this command:

    ps -ef | grep python
    

    ps stands for process status