I\'ve tried top | grep skype for example but it doesn\'t work. I\'m trying to find a specific process by name.
top | grep skype
I would recommend using ps -ax | less
ps -ax | less
From within less, you can type in /skypeEnter to search for processes with names containing "skype".
less
skype
use ps instead of top.