ファイルの中からテキスト文字列を検索する
Vista 7 8 10 機能
ファイルの中からテキスト文字列を検索する。検索対象のパス指定が無ければ、プロンプトで入力されたテキストまたは別のコマンドからパイプ処理で渡されたテキストを検索する。
形式
find (option) [char] (location)
オプション
コマンド例
実行例 Microsoft Windows [Version 6.1.7601] Copyright (c) 2009 Microsoft Corporation. All rights reserved. C:\Temp>more sample.txt Test Test word is char. Test word is Char. This is a test. test char C:\Temp> C:\Temp>find "Char" sample.txt ---------- SAMPLE.TXT Test word is Char. C:\Temp> Microsoft Windows [Version 6.1.7601] Copyright (c) 2009 Microsoft Corporation. All rights reserved. C:\Temp>find /I "Char" sample.txt ---------- SAMPLE.TXT Test word is char. Test word is Char. test char C:\Temp>find /V "Char" sample.txt ---------- SAMPLE.TXT Test Test word is char. This is a test. test char C:\Temp> 関連ページ findstr ・・・文字列や正規表現を使って文字列を検索するdel ・・・ファイルを削除する type ・・・ファイルの内容を表示する copy ・・・ファイルをコピーする dir ・・・ファイル・ディレクトリの情報を表示する | ||||||||||||||||
|