ygqiang 当前离线
中尉
评分人数
TOP
copy 1.txt+2.txt test.txt @echo off for /f "delims=" %%i in (test.txt) do ( if not defined %%i set %%i=A & echo %%i>>ztest.txt)复制代码
@echo off for /f "delims=" %%i in ('find /v "" ^< 1.txt ^& type 2.txt') do ( if not defined _%%i ( echo;%%i>>test.txt set _%%i=1 ) ) pause复制代码