luxxsys 当前离线
列兵
评分人数
gawk 当前离线
少将
@echo off for /f "tokens=2 delims=[]" %%i in ('type "client.log" ^| findstr /c:"Successful ARP Flush on interface"') do ( set str=%%i ) echo,%str% pause复制代码
TOP
flyinnet9 当前离线
少尉
@echo off for /f "tokens=2 delims=[]" %%a in ('findstr /c:"Successful ARP Flush on interface" client.log') do echo.%%a pause复制代码