i got this
Code: Select all
Echo off
echo [my text1]
echo[my text2]
and i got this question.
is there a way so first my text1 come and then there go 4 sec and text2 come?
Moderator: DosItHelp
Code: Select all
Echo off
echo [my text1]
echo[my text2]
Code: Select all
@echo off
echo [my text]
ping -n 5 127.0.0.1 >nul 2>nul
echo [my text 2 4 seconds later]
Code: Select all
@echo off
echo [my text]
timeout /t 4 >nul
echo [my text 2 4 seconds later]
Eagle710 wrote:This will work too.Code: Select all
@echo off
echo [my text]
timeout /t 4 >nul
echo [my text 2 4 seconds later]