일부 서버에서 ASCII 정보에 접근 하곤 했는데 curl
, 항상 맨 아래로 이동했습니다. 맨 위에서 시작하는지 어떻게 확인하나요?
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.)