【Bat】ファイルの検索

2023年8月5日Bat

ファイルの検索


ファイル名で検索する

.log を指定してカレントディレクトリ配下を検索する

dir /a-d /b /s | findstr \.log

ファイル中の文字列を検索する

文字列 critical が error.log 中に含まれるか検索する

findstr "critical" error.log

error.log ファイルを読み込んで critical が含まれる行を表示する

for /f %i in ("error.log") do (findstr "critical" %i)

Bat

Posted by junichi