如何在 linux 中按页列出文件?

How to list files page wise in linux?

如何在 linux 中分页列出文件?当我使用 ls -lals -lt 列出文件时,结果向下滚动到最后一页,我无法查看开头。

管道到 "less" 或 "more"。

ls -la | less

moreless 命令将一次显示一个屏幕。

ls -la | more

我建议使用 less 而不是 more

less 可以向后滚动并具有其他附加功能。

more 是一个旧实用程序,只是用来显示更多内容。有人创建了 less 作为对 more 的回答,因此名字相反。