How do I set time between echoing messages? :A
echo 1
>
echo 2
>
echo 3I want to set time between the messages with ">" under them.
What is meant by "time"? Do you mean a delay before the next command? If so just ping the loop back like... echo 1
@ping 127.0.0.1 -n 10 > nul
echo 2
@ping 127.0.0.1 -n 10 > nul
echo 3
@ping 127.0.0.1 -n 10 > nulThis will wait 10 seconds between commands. change the -n to 1 if you only want to wait 1 second.
In newer operating system, there is a WIAT command.
Yes (14) | ![]() | |
No (14) | ![]() | |
I don't know (15) | ![]() |