Browse Source

README.md

xiu2 3 years ago
parent
commit
9471094d27
1 changed files with 22 additions and 22 deletions
  1. 22 22
      README.md

+ 22 - 22
README.md

@@ -255,25 +255,6 @@ CloudflareST.exe -tl 200 -sl 5.6 -dn 10
 
 </details>
 
-****
-#### \# Windows 快捷方式如何使用参数
-
-<details>
-<summary><code><strong>「 点击展开 查看内容 」</strong></code></summary>
-
-****
-
-``` bash
-## 右键快捷方式 - 目标
-# 如果要不输出结果文件,那么请加上 -o " ",引号里的是空格(没有空格会导致该参数被省略)。
-D:\ABC\CloudflareST\CloudflareST.exe -n 500 -t 4 -dn 20 -dt 5 -o " "
-
-# 如果文件路径包含引号,则需要把启动参数放在引号外面,记得引号和 - 之间有空格。
-"D:\Program Files\CloudflareST\CloudflareST.exe" -n 500 -t 4 -dn 20 -dt 5 -o " "
-```
-
-</details>
-
 ****
 #### \# 单独对一个或多个 IP 测速
 
@@ -284,13 +265,13 @@ D:\ABC\CloudflareST\CloudflareST.exe -n 500 -t 4 -dn 20 -dt 5 -o " "
 
 如果要单独**对一个或多个 IP 进行测速**,只需要把这些 IP 按如下格式写入到任意文本文件中,例如:`1.txt`
 
-``` json
+```
 1.1.1.1
 1.1.1.200
 1.0.0.1/24
 ```
 
-> 自从 v1.4.10 版本后,单个 IP 就不需要添加子网掩码 `/32` 了(`1.1.1.1`等同于 `1.1.1.1/32`)。  
+> 单个 IP 的话可以省略 `/32` 子网掩码了(即 `1.1.1.1`等同于 `1.1.1.1/32`)。  
 > 子网掩码 `/24` 指的是这个 IP 最后一段,即 `1.0.0.1~1.0.0.255`。
 
 
@@ -304,7 +285,26 @@ CloudflareST.exe -f 1.txt
 # Linux 系统
 ./CloudflareST -f 1.txt
 
-# 对于 IP 段 1.0.0.1/24 软件只会随机最后一段(1.0.0.1~255),如果要测速该 IP 段中的所有 IP,需要加上 -allip 参数。
+# 对于 1.0.0.1/24 这样的 IP 段只会随机最后一段(1.0.0.1~255),如果要测速该 IP 段中的所有 IP,请加上 -allip 参数。
+```
+
+</details>
+
+****
+#### \# Windows 快捷方式如何使用参数
+
+<details>
+<summary><code><strong>「 点击展开 查看内容 」</strong></code></summary>
+
+****
+
+``` bash
+## 右键快捷方式 - 目标
+# 如果要不输出结果文件,那么请加上 -o " ",引号里的是空格(没有空格会导致该参数被省略)。
+D:\ABC\CloudflareST\CloudflareST.exe -n 500 -t 4 -dn 20 -dt 5 -o " "
+
+# 如果文件路径包含引号,则需要把启动参数放在引号外面,记得引号和 - 之间有空格。
+"D:\Program Files\CloudflareST\CloudflareST.exe" -n 500 -t 4 -dn 20 -dt 5 -o " "
 ```
 
 </details>