轻舞飞扬 当前离线
列兵
@echo off setlocal enabledelayedexpansion for /f "delims=" %%i in (a.txt) do (for /f "delims= " %%k in (b.txt) do (echo "%%i"|findstr "%%k" set a=%%k echo !a!>>c.txt)) pause复制代码
TOP