From 9654cb8ea645a2526769398aade887041e381378 Mon Sep 17 00:00:00 2001 From: xiu2 <54703944+XIU2@users.noreply.github.com> Date: Fri, 6 Nov 2020 12:32:23 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96=20=E4=B8=8B=E8=BD=BD?= =?UTF-8?q?=E6=B5=8B=E9=80=9F=E6=96=87=E4=BB=B6=E5=A4=A7=E5=B0=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 11 +++++++---- util.go | 2 +- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index c95f277f..eb41df06 100644 --- a/README.md +++ b/README.md @@ -79,16 +79,19 @@ https://github.com/XIU2/CloudflareSpeedTest > **提示: Linux 系统**只需要把下面命令中的 **.exe 删除**即可通用。 ``` cmd -# CMD 示例 +# 命令行示例 CloudflareST.exe -n 500 -t 4 -dn 20 -dt 10 -# 指定 IP数据文件,不输出结果文件,直接显示结果(-p 20 条) +# 指定 IP数据文件,不显示结果直接退出(-p 值为 -1) +CloudflareST.exe -n 500 -t 4 -dn 20 -dt 10 -p -1 -f "ip.txt" -dd + +# 指定 IP数据文件,不输出结果到文件,直接显示结果(-p 值为 20 条) CloudflareST.exe -n 500 -t 4 -dn 20 -dt 10 -p 20 -f "ip.txt" -o " " -dd -# 指定 IP数据文件 及 输出结果文件(相对路径,即当前目录下) +# 指定 IP数据文件 及 输出结果到文件(相对路径,即当前目录下) CloudflareST.exe -n 500 -t 4 -dn 20 -dt 10 -f "ip.txt" -o "result.csv" -dd -# 指定 IP数据文件 及 输出结果文件(绝对路径,即 C:\abc\ 目录下) +# 指定 IP数据文件 及 输出结果到文件(绝对路径,即 C:\abc\ 目录下) CloudflareST.exe -n 500 -t 4 -dn 20 -dt 10 -f "C:\abc\ip.txt" -o "C:\abc\result.csv" -dd ``` diff --git a/util.go b/util.go index a4732447..76dcd0e7 100644 --- a/util.go +++ b/util.go @@ -74,7 +74,7 @@ const ( NormalPing ) -const url string = "https://speed.cloudflare.com/__down?bytes=1000000000" +const url string = "https://speed.cloudflare.com/__down?bytes=314572800" var downloadTestTime time.Duration