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

Windowsには、UNIXの「grep」のような正規表現によって検索する「findstr.exe」というツールが標準搭載されています。
使い\方は,[コマンドプロンプト]で「findstr /?」と入力して参照できます。

次の例は、”do_action” という文字列をE:\wp-content\themes\jbst\ディレクトリの拡張子がphpとつくファイルから探して、見つかったファイルをresults.out に書き出すコマンドです。
Googleデスクトップとかよりも数百倍早い。

findstr 使い方


findstr /s /i "do_action" E:\wp-content\themes\jbst\*.php > E:\wp-content\themes\jbst\results.out

Categories:

,

Tags: