qzwifi 当前离线
一级士官
yangfengoo 当前离线
上尉
@echo off for /f "tokens=1,2,3,4,5" %%1 in (2.txt) do ( findstr %%1 1.txt|findstr %%2|findstr %%3|findstr %%4|findstr %%5 )>3.txt复制代码
TOP
@echo off for /f "tokens=1,2,3,4,5" %%1 in (2.txt) do ( find "%%1" 1.txt|find "%%2"|find "%%3"|find "%%4"|find "%%5" )>3.txt pause复制代码
sxw (^_^)当前离线
少尉
CrLf 当前离线
论坛巡查
@findstr /g:2.txt 1.txt>3.txt复制代码
andersen12 当前离线
列兵
awk 当前离线
@echo off (for /f "tokens=1-5" %%a in (2.txt) do ( findstr "%%a %%b %%c %%d %%e" 1.txt ))>3.txt复制代码