1

我经常使用 grep 进行搜索,例如

    grep -nr "matchFound[[:space:]]*=[[:space:]]*true" . 

寻找类似的东西

    matchFound = true
    matchFound   =   true

但只是为了篇幅,语法是如此冗长。是否有可能使它不那么冗长?

请注意:我在 Windows 7 上使用 grep。

4

1 回答 1

2
grep -nr "matchFound\s*=\s*true"
于 2012-04-10T14:16:09.053 回答