johnson3333 当前离线
二级士官
::批处理计算一文本文件的行数 @echo off set /a count=0 for /f "delims=" %%a in (list.txt) do (if "%%a" neq "" set /a count+=1) echo;%count% pause复制代码
TOP
kevinpeng 当前离线
一级士官
findstr .* list.txt |find /c /v "" 复制代码
poxi 当前离线
@echo off for /f " delims=:" %%i in ('findstr /n .* "a.txt"') do set /a h+=1 echo %h% pause复制代码