How to call one batch file after another

后端 未结 6 2006
闹比i
闹比i 2020-12-14 16:23

I have a batch file that i am testing, all i want to do is the following

CALL ping.bat

Then after that batch file has run i want to run ano

6条回答
  •  难免孤独
    2020-12-14 16:32

    The ping command acts differently on different operating systems. Try forcing the ping command to stop after a few echo requests with a -n switch.

    ping -n 4 127.0.0.1

提交回复
热议问题