findstr "xxx" a.txt >nulif errorlevel 1 (echo 没找到) else (echo 找到)
或者
findstr "xxx" a.txt >nul &&(echo 找到)||(echo 没找到)