转储特定单词的批处理文件

时间:2017-01-18 12:54:41

标签: batch-file cmd

我有一个批处理文件,它希望我希望它完美地完成,它会搜索其目录中的所有文件,并使用我搜索的单词转储字符串。但是,我希望能够输入2个单词进行搜索。有人能帮忙吗?

@echo off
title Dumper
color 2
:start
cls
set input=
set /p input= Name To Dump :
findstr /s /i "%input%" *.*  > "%input%_dump.txt"
if %errorlevel%==0 (
echo Dumped All Occurrences For %input% Into %input%_dump.txt
) else (
echo No Data Found
timeout /t 5000
goto start
)
timeout /t 5000
cls
goto start

0 个答案:

没有答案