Using cURL
$ curl -L -I -v fedex.comWhich -L makes it follow redirections, otherwise you can only reach the 301 page.
-I can hide all response body, which is very very verbose.
-v makes the progress talkative, shows details of this request including DNS CA and so on.
or you can:
$ curl -L -s -o /dev/null -v fedex.comWhich send the response body output to the hell.
0 条评论
- 最新
- 最热
- 最早
- 作者
关闭评论
「此时无声胜有声」