Tuesday, April 19, 2022

[SOLVED] How to display list of running processes Python?

Issue

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



Answered By - ettanany
Answer Checked By - Cary Denson (WPSolving Admin)