2015-11-01 179 views
1

的值,我想知道如何打印的值,而不是整個輸出,爲前:ping google.com -t如何打印輸出從

輸出 - 回覆來自xxx.xxx.xxx.xxx:BYT = 32時間= 35 TTL = 52

,我想有:「時間= 35」只只或數字 - 「35」 如果你知道如何幫助我,請幫助我:d 謝謝P.

回答

2

from command line

for /f "eol=P skip=2 tokens=5 delims= " %# in ('ping google.com -t -n 10') do @if "%#" neq "=" @if "%#" neq "in" @echo %# 

從批處理文件:

for /f "eol=P skip=2 tokens=5 delims= " %%# in ('ping google.com -t -n 10') do @if "%%#" neq "=" @if "%%#" neq "in" @echo %%# 

如果您沒有設置-n 10你將不得不等待,直到for /f緩衝區已​​滿。