Ps
pgrep 僅目前使用者
我想知道為什麼
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)"