Ps

pgrep 僅目前使用者

  • February 12, 2016

我想知道為什麼pgrep要讓它只對目前使用者起作用。-u讓我提供名稱,我不知道目前使用者的名稱,我只知道我只需要目前使用者。

謝謝

您可以使用 UID名稱,如下所示man pgrep

  -u euid,...
         Only match processes whose effective user ID is listed.  Either the
         numerical or symbolical value may be used.

  -U uid,...
         Only match processes whose real user ID is listed.  Either the 
         numerical or symbolical value may be used.

如果您也不知道,只需使用命令替換:

pgrep -u "$(whoami)"

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