Tagged Questions
3
votes
3answers
2k views
Processlist
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.
2
votes
6answers
197 views
Kill a process from Linux Application
What is best and most efficient way to find pid of a specific task. Say:
ps -ef | grep "\/usr\/sbin\/watchdog" | cut -d" " -f2
Is there any more efficient way to find the same. I want to kill the ...
1
vote
2answers
250 views
restart a php script using shell script
i am using shell script to monitor the working of a php script. My aim is that this php script should not sleep / terminated and must always be running.The code i used is -
ps aux | grep -v grep | ...