我有一个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
模式下找到Base
和Opp
。
比较他们的数字,例如:
Compare: (Base) 1 and (Opp)4
Compare: (Base) 0 and (Opp)3
您能建议我如何找到这些数字吗?