0
Sorry for this painful dumb question . I have 2 batch files where i have some commands to execute in batchfile1 and sleep for some time and then execute somecommands in batchfile2 and again batchfile2 will wait for some time and then again batchfile1..,so i am have below script
Batchfile1.bat
@echo off
echo helloworld
call Batchfile2.bat
GOTO END
Batchfile2.bat
@echo off
echo printing
Can any one suggest how to use sleep for this scenario, i am seeing different options sleep,timeout..etc. and which is one best to use in this scenario?
I am using windows 7 – user2883028 – 2013-11-02T12:42:48.580