kingming 当前离线
列兵
评分人数
bailong360 (zhonghua)当前离线
上尉
@echo off setlocal enabledelayedexpansion ::CODE BY zhonghua @bbs.bathome.net (for /f "delims=" %%i in (a.txt) do ( set _n= set /p _n= echo;%%i!_n! ))<b.txt >c.txt复制代码
TOP
/zhqsystem/zhq 当前离线
中尉
@echo off (for /f "delims=" %%i in (a.txt) do ( for /f "delims=" %%j in (b.txt) do ( echo=%%i%%j ) ))>3.txt pause复制代码
CrLf 当前离线
论坛巡查
wankoilz 当前离线
#&cls&@gawk -f %0 a.txt b.txt&pause&exit { if(FILENAME=="a.txt"){col1[$0]=1}else{col2[$0]=1} } END { for(x in col1){for(y in col2){OFS="";print x,y}} }复制代码