没必要用for,假定是d:\a这个目录,直接用
findstr /simc:"abc" "d:\a\*.txt" > 1.txt就行了
for /f %%i in ('dir /s /b *.txt') do findstr "a" %%i && echo %%i>>1.txt
cd 到你的目录
@echo off
if exist xx.txt del xx.txt
for /f "delims=" %a in ('dir /A-D /B /S') do findstr /M "荣华富贵" "%a">>xx.txt
@echo on
for /f %%i in ('dir /s /b *.txt') do findstr a "%%i" && echo %%i>>1.txt