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

前端 未结 8 1546
执笔经年
执笔经年 2021-02-01 02:18

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

相关标签:
8条回答
  • 2021-02-01 02:58

    I would recommend using ps -ax | less

    From within less, you can type in /skypeEnter to search for processes with names containing "skype".

    0 讨论(0)
  • 2021-02-01 03:01

    use ps instead of top.

    0 讨论(0)
提交回复
热议问题