trying to wright a script to ask for ip and ping it but this one dose not ping just asks for ip infinitely
WHAT DID I SCREW UP, please help im new to scripting in command prompt
@echo off
title Ping
:start
echo what IP would you like to ping
set /p ip=
ping %ip%
Pause
goto start
WHAT DID I SCREW UP, please help im new to scripting in command prompt
@echo off
title Ping
:start
echo what IP would you like to ping
set /p ip=
ping %ip%
Pause
goto start