ping 命令 带时间显示 批处理实现
能否用批处理来实现这样的现实Pinging10.111.23.1with32bytesofdata:[color=red]2005-09-0900:00:00[/colo...
能否用批处理来实现这样的现实
Pinging 10.111.23.1 with 32 bytes of data:
[color=red]2005-09-09 00:00:00 [/color]Reply from 10.111.23.1 : bytes=32 time=2ms TTL=255
[color=red]2005-09-09 00:00:01 [/color]Reply from 10.111.23.1 : bytes=32 time=2ms TTL=255
[color=red]2005-09-09 00:00:02 [/color]Reply from 10.111.23.1 : bytes=32 time=1ms TTL=255 展开
Pinging 10.111.23.1 with 32 bytes of data:
[color=red]2005-09-09 00:00:00 [/color]Reply from 10.111.23.1 : bytes=32 time=2ms TTL=255
[color=red]2005-09-09 00:00:01 [/color]Reply from 10.111.23.1 : bytes=32 time=2ms TTL=255
[color=red]2005-09-09 00:00:02 [/color]Reply from 10.111.23.1 : bytes=32 time=1ms TTL=255 展开
1个回答
展开全部
ping的结果是不能这样分列显示的。要么全部为红色。
如果说是文本替换倒是可以。以上文本为a.txt,批处理代码:
@echo off&
cd .>op.txt
for /f "delims=" %%i in ('type a.txt^|findstr /n ".*"') do (
set var=%%i
setlocal enabledelayedexpansion
set var=!var:2005=[color:red]2005!
set var=!var:Reply=[/color]Reply!
echo.!var:~2!
endlocal
)>>op.txt
start op.txt
exit
如果说是文本替换倒是可以。以上文本为a.txt,批处理代码:
@echo off&
cd .>op.txt
for /f "delims=" %%i in ('type a.txt^|findstr /n ".*"') do (
set var=%%i
setlocal enabledelayedexpansion
set var=!var:2005=[color:red]2005!
set var=!var:Reply=[/color]Reply!
echo.!var:~2!
endlocal
)>>op.txt
start op.txt
exit
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询