私はよくgrepを使って次のような検索を行います
grep -nr "matchFound[[:space:]]*=[[:space:]]*true" .
のようなものを探す
matchFound = true
matchFound = true
ただし、スペースの都合上、構文は非常に冗長です。冗長にすることは可能ですか?
注意: Windows 7 で grep を使用しています。
私はよくgrepを使って次のような検索を行います
grep -nr "matchFound[[:space:]]*=[[:space:]]*true" .
のようなものを探す
matchFound = true
matchFound = true
ただし、スペースの都合上、構文は非常に冗長です。冗長にすることは可能ですか?
注意: Windows 7 で grep を使用しています。