更改批处理文件中ping结果行的颜色

时间:2014-10-07 21:11:57

标签: batch-file

我知道有各种颜色的echo声明,但我还没有让它适合我。我想让ping结果的行有不同的颜色。有办法吗?

这是我在网络上ping IP地址的代码。任何建议都会有所帮助。

@echo off
COLOR 4f
ECHO OFF
set /P ip=Enter last 2 quadrants of your ip (PC Number) separated with a (.) : %=%
PING -n 2 10.1.%ip%
PING -n 2 10.2.%ip%
PING -n 2 10.3.%ip%
PING -n 2 10.4.%ip%
PING -n 2 10.5.%ip%
PING -n 2 10.6.%ip%
PING -n 2 10.7.%ip%
PING -n 2 10.8.%ip%
ECHO All done pinging. Press any key to exit. 
PAUSE 

1 个答案:

答案 0 :(得分:0)

我相信你所寻找的是here。此代码由jeb。

制作

至于在您的场景中使用它,我猜你可以管道ping命令或将输出重定向到文件,然后使用此代码读取文件并更改颜色。