经常在网站上加一大堆外链, 时间长了,很多外链已经不可达了,如何检验是个头痛的问题。下面的脚本便是止痛良药。
while read -r url; do curl -sL -w "%{http_code} %{url_effective}\n" "$url" -o /dev/null done <<EOF http://example.com/ https://itcool.fun/ http://bixuebihui.com/ https://qsn.so/ http://www.google.com/ https://qsn.so/index.php?user-app-login http://以及其他的你要检查的.url/ EOF
将以上片断保存为 ping_url.sh
$ chmod u+x ping_url.sh
执行
$ ping_url.sh
便可以看到很可爱的输出
200 http://example.com/000 https://itcool.fun/403 http://bixuebihui.com/000 https://qsn.so/000 http://www.google.com/200 https://qsn.so/index.php?user...000 http://以及其他的你要检查的.url/
那些有问题的页面会输出400以上的状态码(status code).
curl是个好工具!