Skip to content

Instantly share code, notes, and snippets.

@cephurs
Forked from shhivam/pinger.bat
Created October 30, 2018 13:44
Show Gist options
  • Save cephurs/7474dd9d04ff922074adfb60ed13b1f5 to your computer and use it in GitHub Desktop.
Save cephurs/7474dd9d04ff922074adfb60ed13b1f5 to your computer and use it in GitHub Desktop.
@ECHO OFF
set IPADDRESS=x.x.x.x
set INTERVAL=3
:PINGINTERVAL
ping google.com
timeout %INTERVAL%
GOTO PINGINTERVAL
@kingin1400
Copy link

l

@kingin1400
Copy link

how do I get ips?

@kingin1400
Copy link

2

@JuliusDeBoer
Copy link

JuliusDeBoer commented Oct 28, 2020

the ping command is a east way to get an ip:
example:
ping google.com
simply replace google.com with the website url without http:// or https://

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment