wangxiulin (路过~~!)当前离线
四级士官
评分人数
pcl_test 当前离线
荣誉版主
//&cls&cscript -nologo -e:jscript "%~f0"<"文本.txt"&pause&exit WSH.echo(WSH.StdIn.ReadAll().match(/\S/g).join('\r\n'));复制代码
TOP
gawk 当前离线
少将
grep -o "." 1.txt > 2.txt复制代码
chencg 当前离线
列兵
@echo off Setlocal enabledelayedexpansion for /f "delims=" %%i in (1.txt) do ( set k=%%i ) :sh set i=!k:~0,1! echo %i% >>2.txt set k=!k:~1! if defined k call :sh k pause复制代码