-
-
Save cephurs/7474dd9d04ff922074adfb60ed13b1f5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@ECHO OFF | |
set IPADDRESS=x.x.x.x | |
set INTERVAL=3 | |
:PINGINTERVAL | |
ping google.com | |
timeout %INTERVAL% | |
GOTO PINGINTERVAL |
how do I get ips?
2
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
l