centos检测http网站的脚本

2022/8/4 5:22:53

本文主要是介绍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



这篇关于centos检测http网站的脚本的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程