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.
我们正在 Linux 上做项目,我们需要使用一些真实世界的多进程应用程序来展示它的特性。
我在 Linux 中找不到任何多进程应用程序。
请帮助我了解此类应用程序的名称。
任何外壳管道:
grep whatever myfile | head -100
使用两个进程(grep 和 head)向您显示包含whateverin的前一百行myfile。这种事情在 Linux 或任何类似 *nix 的系统中无处不在。更具体地说,它是实现 Unix 哲学的关键特性,是任何 shell 的核心,如 Bash、Korn Shell、Z Shell、Dash、C Shell 等。
whatever
myfile
Linux 由多处理组成。如果您仍然不相信,请查看sshd哪个接受来自其他机器的传入登录,方法是为每个机器生成一个进程。
sshd