ps 和 ps -e 命令在 linux 之间有什么区别

What is the difference between ps and ps -e command in linux

ps 和 ps -e 命令在 linux 中有什么区别? ps -e 给出更长的列表。

来自手册,

By default, ps selects all processes with the same effective user ID (euid=EUID) as the current user and associated with the same terminal as the invoker.

例如,如果您打开 gnome 终端并输入 ps 命令,它将列出从该终端启动的所有进程。

ps -e列出系统中的所有进程。