How do I get a process list of all running processes from Python, on Unix, containing then name of the command/process and process id, so I can filter and kill processes.
feedback
|
|
On linux, the easiest solution is probably to use the external
On other systems you might have to change the options to Still, you might want to run | |||||||||||
feedback
|
|
On Linux, with a suitably recent Python which includes the
You may need to tweak the ps command slightly depending on your exact needs. | ||||
|
feedback
|
|
Why Python? | |||||||||
feedback
|