Use Activity Monitor. It's much simpler.Good day people.
I'm currently looking for a command for my terminal that can show me if a certain process is running. I want to be able to filter out the process by name not by running its current PID.
Any chance of that happening?
Regards.
Use Activity Monitor. It's much simpler.
Agree with top except it only shows the top dozen or so processes. I use PS and grep for the name of the process I'm looking for, ie
Code:ps -ax | grep python
Will grep work with cygwin? Better yet, will this code work work with cygwin at all?
Are sshing into the mac or windows box? If you are going to the windows box use pstools. There is a utility called pslist that will show you all processes. If you are going to the mac use the suggestions above.