From d46452ace97b23ee0509c0f9d7cc8f700ac27a7d Mon Sep 17 00:00:00 2001 From: mack-a <57424792+mack-a@users.noreply.github.com> Date: Thu, 30 Jul 2020 16:55:05 +0800 Subject: [PATCH] =?UTF-8?q?feat(findBestCDNIP):=20=E5=A2=9E=E5=8A=A0?= =?UTF-8?q?=E6=9C=80=E4=BC=98=E7=9A=8430=E6=9D=A1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- find_best_cdn_ip.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/find_best_cdn_ip.sh b/find_best_cdn_ip.sh index 6a8a99c..78af623 100755 --- a/find_best_cdn_ip.sh +++ b/find_best_cdn_ip.sh @@ -12,9 +12,9 @@ statisticalContent(){ echoContent red "=============================================" echoContent yellow '计算中--->' # 排序计算 - echoContent red "排序规则:丢包率>波动>平均延迟" + echoContent red "排序规则:丢包率>波动>平均延迟,只展示最优的三十条" echoContent red "依次展示为:[ ip 丢包率 最小延迟 平均延迟 最大延迟 波动 ]" - cat /tmp/ping.log|sort -t ' ' -k 2n -k 6n -k 4n + cat /tmp/ping.log|sort -t ' ' -k 2n -k 6n -k 4n|head -30 echoContent red "=============================================" } echoContent(){