Skip to content

Instantly share code, notes, and snippets.

@lyndell
Last active May 19, 2016 02:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lyndell/9b7b9827a8c45ca59a5e2579dbeca5bb to your computer and use it in GitHub Desktop.
Save lyndell/9b7b9827a8c45ca59a5e2579dbeca5bb to your computer and use it in GitHub Desktop.
Repeatedly run a 100-count ping.
::
::
:: Name: PingLoop.bat
:: Desc: Repeatedly run a 100-count ping.
:: URL: https://gist.github.com/lyndell/9b7b9827a8c45ca59a5e2579dbeca5bb
::
:: Author: Lyndell Rottmann
:: WWW: http://Lyndell.US
:: Copyright (c) 2016 Lyndell Rottmann
::
:infiniteLoop
echo %DATE%
echo %TIME%
ping -n 100 Lyndell.NET
echo
echo
timeout 10
goto infiniteLoop
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment