linux下使用命令时如何查看1000行

发布于 2024-11-07 10:27:46 字数 105 浏览 0 评论 0原文

示例命令:

$ locate .conf
$ ls

如果显示 1000 行,如何查看所有行?在终端中,xx 行有限制(我不知道)

Example command:

$ locate .conf
$ ls

if it shows 1000 lines, how can I view all lines? In terminal, there's a restriction for xx line (I don't know)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

假扮的天使 2024-11-14 10:27:46

将输出通过管道传输到 moreless 等分页器。

$ locate .conf | less

对于更复杂的输出,我还喜欢通过管道输入 vim

$ g++ -E something.cpp | vi -

Pipe the output to a pager like more or less.

$ locate .conf | less

For more complex output I also like to pipe into vim.

$ g++ -E something.cpp | vi -
一萌ing 2024-11-14 10:27:46

通过“less”管道传输长命令:

ls | less

Pipe the long command through "less":

ls | less
享受孤独 2024-11-14 10:27:46

除了 lessvim 使用(这里最常见的情况)之外,如果您使用 gonme-terminal 编辑使用的配置文件并设置所需的行数。

在此处输入图像描述

Additionally to less and vim usage which is the most common case here you can also increase the buffer size of your terminal, if you are using gonme-terminal edit the profile used and set the desired number of lines.

enter image description here

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文