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 に答える