Terminal

在 Window on top 命令中使用 FILTERING 時出錯

  • January 9, 2020

嘗試通過Filtering in a Window來過濾top命令的結果,按下然後鍵入 filter,就像這裡的教程中所述:http: //man7.org/linux/man-pages/man1/top.1.htmlo

但是當我輸入例如COMMAND=iTerm2或任何其他命令時,我得到invalid order錯誤。

您可以在此處查看有問題的動畫 gif:https ://imgur.com/a/VJzfXjl

  • 作業系統:Mac OS Catalina 版本:10.15.2

o不是BSD top上的過濾器,它是一種排序。

    o       Change the order in which the display is sorted.  The sort key
    names include cpu, res, size, time.  The default is cpu.

我不確定是否有辦法按照你想要的方式過濾它。

所以你可以按o然後輸入COMMANDCOMMAND=iTerm2無效。

或者,您可以使用過濾掉單個 pidtop-pid選項執行,但 iTerm2 可能正在執行多個程序。

top -pid $(pgrep iTerm2 | head -1)

引用自:https://unix.stackexchange.com/questions/561244