ping 有个参数是用来超时的,可以用了延时指定时间代码如下
e:\1.exe
ping 127.0.0.1 -n 6 -w 1000
e:\2.exe
就是延时5秒了
DOS里有个“choice.com”就是用于延迟执行命令的,命令行参数你自己查下吧。
method1: ping 命令是一秒执行一次, -n 代表的次数
C:\Users\Administrator> ping 127.0.0.1 -n 5 && echo hello world!
method2:
C:\Users\Administrator> timeout 5 >nul && echo hello world!
method3:
C:\Users\Administrator> choice /d y /t 5 >nul || echo hello world!
e: /1.exeping /n 6 127.1e: /2.exe