Để biết thêm thông tin cũng như một dòng mới sạch sau khi cuộn tròn
~/.curlrc
-w "\nstatus=%{http_code} %{redirect_url} size=%{size_download} time=%{time_total} content-type=\"%{content_type}\"\n"
(Thêm tùy chọn có sẵn ở đây )
redirect_url
sẽ trống nếu yêu cầu không được chuyển hướng hoặc bạn sử dụng -L
để làm theo chuyển hướng.
Ví dụ đầu ra:
~ ➤ 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"
~ ➤
Chỉnh sửa , để làm cho mọi thứ dễ đọc hơn, bạn có thể thêm màu ANSI vào -w
dòng, không dễ để viết trực tiếp, nhưng tập lệnh này có thể tạo ~/.curlrc
tệp có màu.
#!/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)"
: câu trả lời này: unix.stackexchange.com/a/217611/110338