선 밖에 선 자유인

여러 호스트 ping check bat 파일 본문

IT/System & Network

여러 호스트 ping check bat 파일

Hotman 2016. 10. 20. 18:12

hosts.txt 파일에 저장된 host에 ping check


--------------------------------------------------------

@echo off

setLocal EnableDelayedExpansion


for /f "tokens=* delims= " %%a in (hosts.txt) do (

ping %%a

)

--------------------------------------------------------

Comments