标签: regex
第一个命令匹配输出
show output | grep 'minorThresh": "\w+"'
=> "minorThresh": "95",
"minorThresh": "95",
但与\d相同,未显示任何匹配
\d
show output | grep 'minorThresh": "\d+"'
我可以知道我在这里做错了什么。
答案 0 :(得分:0)
show output | grep -P 'minorThresh : \d+'