"ps -ef " 和 linux 中的“ps -ef | more”命令有什么区别

What is the difference between "ps -ef " and " ps -ef | more" command in linux

我刚开始学习linux命令,请帮我找出linux

ps -efps -ef | more命令的区别

使用 ps -ef | more,您可以将 | 的输出从 ps 传输到 more,这样您就可以滚动浏览 ps 的结果。使用 man psman more 查看这些命令的说明。 有关管道和流的更多信息,请参阅 http://ryanstutorials.net/linuxtutorial/piping.php

more 是用于 CRT 查看的文件细读过滤器。 more 是一个过滤器,用于一次一屏地翻阅文本。