比较HTML页面中的两个几乎相等的字符串

时间:2018-09-20 10:05:27

标签: bash

我有一个html页面,其中包含两个字符串。我必须比较它们。 我的计划是:

string =(curl <path>)
echo "$string"

那我从 echo 那里得到了:

Base Regresses: latency = 0 latency_max = 1 latency_min = 1 bandwidth = 0 
Opp Regresses: latency = 4 latency_max = 4 latency_min = 3 bandwidth = 3

现在我必须在latency_max模式和bandwidth模式下找到BaseOpp

比较他们的数字,例如:

Compare: (Base) 1 and (Opp)4
Compare: (Base) 0 and (Opp)3

您能建议我如何找到这些数字吗?

0 个答案:

没有答案