博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
网站访问用时统计
阅读量:6843 次
发布时间:2019-06-26

本文共 637 字,大约阅读时间需要 2 分钟。

  hot3.png

#!/bin/bash

domain="$1"
i=0
j=0
echo 'total,    nstim,    conne,    appco,    pretr,    redir,    statt'
while [ 1 ]
do
((j++))
mess=`curl -s -o /dev/null 2>/dev/null --write-out "%{time_total},    %{time_namelookup},    %{time_connect},    %{time_appconnect},    %{time_pretransfer},    %{time_redirect},    %{time_starttransfer}" $domain`
time_total=`echo $mess |awk -F ',' '{print $1}'`
check1=`awk -v num1="$time_total" -v num2=1 'BEGIN{print(num1>num2)?"0":"1"}'`
if [ "$check1" -eq "0" ];then
#    echo "$mess" >> /tmp/${domain}.log 2>/dev/null
   echo "$mess" `date` $i/$j
   ((i++))
       if [ "$i" -ge "1000" ];then
           exit 0
       fi
fi
done

转载于:https://my.oschina.net/kaixin/blog/224868

你可能感兴趣的文章
云计算十字真言及其在小博无线的实践
查看>>
用一生回味的经典语录
查看>>
你的命运不是一头骡子
查看>>
ART世界探险(18) InlineMethod
查看>>
排序算法之鸽巢排序
查看>>
Appium移动自动化框架
查看>>
oracle gg怎样卸载移除干净的源环境
查看>>
OAS的使用——控制台和命令行工具
查看>>
享元模式
查看>>
无线动态化解决方案总结:从WeApp到Weex
查看>>
CentOS上安装Bugzilla 4.5.2
查看>>
嵌入式 RTP通话:视频流(H.264)的传输
查看>>
参数的排列组合2
查看>>
struts2中ognl标签详解
查看>>
.NET中Flags枚举的使用
查看>>
RSA算法介绍
查看>>
【Python之旅】第八篇:开发监控软件的思想与流程
查看>>
KVM虚拟机克隆
查看>>
XenApp / XenDesktop 7.6 初体验二 配置计算机目录和交付组
查看>>
C#的换行符和回车符在程序语句中如何表示?
查看>>