curl -sL -w "%{http_code}\n" "http://www.google.com/" -o /dev/null
-s
= Silent cURL's output
-L
= Follow redirects
-w
= Custom output format
-o
= Redirects the HTML output to /dev/null
Example:
[~]$ curl -sL -w "%{http_code}\n" "http://www.google.com/" -o /dev/null
200
I would probably remove the \n
if I were to capture the output.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…