shell curl 状态码与内容等脚本
shell脚本
vim check_url.sh
#!/bin/bash
while true;do
#echo "xxxx"
da=`date +%F-%H-%M-%S`
ret=`curl -o $da -s -w %{http_code}:%{time_connect}:%{time_starttransfer}:%{time_total} $1`
echo "$da,$ret">>ret.log
sleep 1
done
运行脚本:
bash -x check_url.sh http://www.baidu.com
效果
说明 :
http_code :http状态码
time_connect: 连接 时间
time_total: 总的时间 ,也就是request_time
2022-03-31-17-00-*文件是返回 内容
分享1个命令:
清空文件
find /tmp/1.txt|awk '{print "echo >"$0}'|bash
----------当你发现自己的才华撑不起野心时,就请安静下来学习吧---------