centos检测http网站的脚本
作者:互联网
centos检测http网站的脚本
同时把结果导出到>/tmp/1.txt
可以安装screen
yum install screen
在另外一个窗口执行这个脚本
screen窗口键入C-a d
,Screen会给出detached提示
screen -ls
screen -r 12865
while 1>0;do /usr/bin/curl -o /dev/null -s -m 20 -w "%{time_namelookup}::%{time_connect}::%{time_appconnect}::%{time_starttransfer}::%{time_total}::%{http_code}\n" "https://restapi.getui.com";done >/tmp/1.txt
标签:脚本,tmp,http,centos,screen,time,txt 来源: https://www.cnblogs.com/itfat/p/16548088.html