pgrep 仅当前用户

pgrep 仅当前用户

我想知道有什么论据使它pgrep只对当前用户起作用。-u让我提供名称,我不知道当前用户的名称,我只知道我只需要当前用户。

谢谢

答案1

您可以使用 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)"

相关内容