컬 후 깔끔한 새로운 라인뿐만 아니라 더 많은 정보
~/.curlrc
-w "\nstatus=%{http_code} %{redirect_url} size=%{size_download} time=%{time_total} content-type=\"%{content_type}\"\n"
(더 많은 옵션이 여기에 있습니다 )
redirect_url
요청이 리디렉션되지 않거나 사용하는 경우 비어 있습니다. -L
을 따르기 위해 하는 .
출력 예 :
~ ➤ curl https://www.google.com
<HTML><HEAD><meta http-equiv="content-type" content="text/html;charset=utf-8">
<TITLE>302 Moved</TITLE></HEAD><BODY>
<H1>302 Moved</H1>
The document has moved
<A HREF="https://www.google.co.uk/?gfe_rd=cr&ei=FW">here</A>.
</BODY></HTML>
status=302 https://www.google.co.uk/?gfe_rd=cr&ei=FW size=262 time=0.044209 content-type="text/html; charset=UTF-8"
~ ➤
Edit , 일을 더 읽기 쉽게하기 위해 ANSI 색상을 -w
줄에 추가 할 수는 있지만 직접 작성하는 것은 쉽지 않지만 이 스크립트는 ~/.curlrc
색상이 있는 파일을 생성 할 수 있습니다 .
#!/usr/bin/env python3
from pathlib import Path
import click
chunks = [
('status=', 'blue'),
('%{http_code} ', 'green'),
('%{redirect_url} ', 'green'),
('size=', 'blue'),
('%{size_download} ', 'green'),
('time=', 'blue'),
('%{time_total} ', 'green'),
('content-type=', 'blue'),
('\\"%{content_type}\\"', 'green'),
]
content = '-w "\\n'
for chunk, colour in chunks:
content += click.style(chunk, fg=colour)
content += '\\n"\n'
path = (Path.home() / '.curlrc').resolve()
print('writing:\n{}to: {}'.format(content, path))
path.write_text(content)
echo "$(curl localhost:8001/api)"
과 같은 답변을 얻을 수 있습니다. unix.stackexchange.com/a/217611/110338