如何使用“curl”查看很长输出的顶部?

如何使用“curl”查看很长输出的顶部?

我曾经curl从某些服务器访问 ASCII 信息,但它总是移到底部。如何确保它从顶部开始?

cat关于命令有一个类似的问题我想解决方案可能是将输出重定向到文件,然后less按照此处的建议使用。有可能更有效的方法吗?

答案1

您可以使用标志通过管道输出less+Gg检查注释):

curl ... | less +Gg

标志的含义,来自联机帮助页:

   g or < or ESC-<
          Go to line N in the file, default 1 (beginning of file).  (Warn‐
          ing: this may be slow if N is large.)

   G or > or ESC->
          Go to line N in the file, default the end of the  file.   (Warn‐
          ing:  this  may  be slow if N is large, or if N is not specified
          and standard input, rather than a file, is being read.)

相关内容