macosgrep

How can I find a specific process with "top" in a Mac terminal


I've tried top | grep skype for example but it doesn't work. I'm trying to find a specific process by name.


Solution

  • Use this instead: ps -ax | grep -i skype