批次處理Find命令用於在檔案或輸入中搜尋字串,輸出匹配的行。
Find
語法
FIND [text] [destination]
其中,text是需要搜尋的字串,而destination是搜尋的原始檔。
text
destination
範例
@echo off FIND "Application" C:\tp\lists.txt
如果單詞「Application」存在於檔案lists.txt中,則包含該字串的行將顯示在命令提示字元中。
「Application」
lists.txt