Код:
@echo off
1>"%temp%\1.txt" (
echo test
echo second
echo third test string
)
:: выведет название файла
findstr /a:0c "test" "%temp%\*"
:: выведет номера строк в файле
findstr /n /a:0e "test" "%temp%\1.txt"
:: выведет название файла и номера строк
findstr /n /a:0d "test" "%temp%\*"