文字列・ファイルのテキスト検索 - Select-String

ファイルのテキスト検索

 Select-String -Path "*.txt" -Pattern "hello"

dirコマンドレットと組み合わせて再帰的に

 dir -Recurse -Filter "*.txt" | Select-String "hello"

OR検索

 Select-String -Path "*.txt" -Pattern "hello","world"

"hello"または"world"がある行にマッチする。

NOT検索

 Select-String -Path "*.txt" -NotMatch -Pattern "hello","world"

"hello"も"world"もない行にマッチする。

参考

http://blogs.technet.com/b/heyscriptingguy/archive/2011/08/04/use-an-easy-powershell-command-to-search-files-for-information.aspx


トップ   新規 一覧 検索 最終更新   ヘルプ   最終更新のRSS