我需要在bash中实现以下两点:
Give a list of all processes that were started from your terminal
和
In one command, give a detailed multi-paged list of all processes that
are currently running on the [server].
我发现了ps command,但没有信息页面 因为它在服务器上,我正在努力,我不完全理解。感谢帮助。
答案 0 :(得分:1)
man 1 ps
提供了完整的选项列表。标志在不同平台上可能有所不同,因此无法替代阅读系统的手册页。但是,假设您的 ps 版本使用非BSD标记,请特别注意-t
和-e
选项。