http状态检测
curl是使用libcurl实现的一组互联网命令行的工具,其功能非常强。它支持很多协议,如:FTP, FTPS, HTTP, HTTPS, GOPHER, TELNET, DICT, FILE 以及 LDAP。目前运维中经常用到的php、perl、python等强大的解释性语言都内置有curl的扩展。本文用到的脚本非常简单:
1#!/bin/bash
2usrl=('www.361way.com' 'www.baidu.com' 'www.a.com')
3for i in ${usrl[@]}
4do
5http_code=$(curl -I -s $i -w %{http_code})
6echo $i status: ${http_code:9:3}
7done
上面的脚本运行以后,结果如下:
1www.361way.com status: 200
2www.baidu.com status: 200
3www.a.com status: 301
注:因为www.a.com是一个不存在的域名,因为我这用的是电信的网络,域名出错后,就返回了恶心的电信的114导航页。所以就返回了301的http状态码!
捐赠本站(Donate)
如您感觉文章有用,可扫码捐赠本站!(If the article useful, you can scan the QR code to donate))
- Author: shisekong
- Link: https://blog.361way.com/http-status/1147.html
- License: This work is under a 知识共享署名-非商业性使用-禁止演绎 4.0 国际许可协议. Kindly fulfill the requirements of the aforementioned License when adapting or creating a derivative of this work.