linux下使用命令时如何查看1000行
示例命令:
$ 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
将输出通过管道传输到
more
或less
等分页器。对于更复杂的输出,我还喜欢通过管道输入
vim
。Pipe the output to a pager like
more
orless
.For more complex output I also like to pipe into
vim
.通过“less”管道传输长命令:
Pipe the long command through "less":
除了
less
和vim
使用(这里最常见的情况)之外,如果您使用gonme-terminal 编辑使用的配置文件并设置所需的行数。
Additionally to
less
andvim
usage which is the most common case here you can also increase the buffer size of your terminal, if you are usinggonme-terminal
edit the profile used and set the desired number of lines.