1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

PowerShellでGrepしてファイルへ出力する手順

Last updated at Posted at 2019-07-29

ログファイルをWindowsで検索する際に、役立つと思います。
3つのコマンドレットを組み合わせて実現します。

環境確認

PS > $PSVersionTable.PSVersion
Major  Minor  Build  Revision
-----  -----  -----  --------
5      1      17134  858

ログファイルを標準出力に書き出す

文字コードをオプションで指定しています。

PS > Get-Content -Encoding UTF8 .\hoge.log

Grepする

fugaは検索対象です。

PS > Select-String -Path .\hoge.log fuga

検索結果をファイルに出力する

出力ファイル名と出力内容を指定します。

PS > Set-Content -Path .\fuga.log -Value hoge

ログファイルをGrepしてファイルにリダイレクトする

上記のコマンドレットを | で連結して使用します。

No 項目 意味
1 hoge.log 検索対象のログ
2 huga 検索対象のワード
3 result.log 出力ファイル
PS > Get-Content -Encoding UTF8 .\hoge.log | Select-String fuga | Set-Content .\result.log 

参考

公式Docs
それ PowerShell でできるよ

以上です。

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?