vip2128 当前离线
列兵
apang 当前离线
上将
@echo off&setlocal enabledelayedexpansion (for /f "delims=" %%a in (output.txt) do ( set /a n+=1 for %%b in (%%a) do set str=!str! %%b if !n!==49 echo,!str:~1!&set n=&set str= ))>aa.txt复制代码
TOP
CrLf 当前离线
论坛巡查
gawk "{if(NR%49){str=str $1 \" \"}else{print str $1;str=null}}END{if(str){print str}}" output.txt>99999.txt复制代码