我刚刚制作了一个非常基本的批处理文件来测试我的ping。我想知道我是否可以提取ping然后再用echo显示它。 所以它看起来像这样:
您当前的ping是:(这应该是ping)
答案 0 :(得分:0)
尝试类似的东西:
@echo off
Title Echo PING Reply by Hackoo
color 0a & mode con cols=57 lines=6
::Choose how many seconds you must wait for the refresh
Set MyPause=8
:MyPing
CLS
echo.
ping www.google.com | findstr /i "TTL"
Timeout /Nobreak /t %MyPause% > Nul
Goto MyPing
答案 1 :(得分:0)
它是一个基本的ping请求:
@echo off ping google.com echo按任意键关闭程序 暂停> NUL