正则表达式不匹配数字,而是匹配单词

时间:2017-05-12 19:25:20

标签: regex

第一个命令匹配输出

中的字符串
show output | grep 'minorThresh": "\w+"'

=> "minorThresh": "95",

但与\d相同,未显示任何匹配

show output | grep 'minorThresh": "\d+"'

我可以知道我在这里做错了什么。

1 个答案:

答案 0 :(得分:0)

show output | grep -P 'minorThresh : \d+'