Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在浏览 ps 命令的帮助页面(使用 ps --h),我注意到这两个选项具有相同的描述。
-e all processes -A all processes
我使用这两个选项运行命令,但没有发现任何区别。
这两个选项有什么区别吗?如果不是,为什么要提供两个相同的选项?
为什么要提供两个相同的选项?
可能是为了与ps其他(旧版?)系统兼容。
ps
man ps 说:
-A Select all processes. Identical to -e.
如上所述,这可能是为了与不同 UNIX 系统的旧脚本兼容,它确实发生了。
(archlinux 发行版)。