winsfly 当前离线
一级士官
@echo off for /f %%i in (1.txt) do set /a n+=1 echo %n% & pause复制代码
ivor 当前离线
上校
@echo off set n=0 for /f %%i in (1.txt) do if '%%i' neq '' set /a n+=1 echo %n% & pause复制代码
TOP
powershell "(gc 1.txt).Length"复制代码