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

前端 未结 8 1548
执笔经年
执笔经年 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".

提交回复
热议问题