您的位置:首页 > 编程语言 > Python开发

利用BAT脚本实现多程序同时启动

2015-03-13 15:36 309 查看
直接上栗子:

@echo off
@if you don't start any process behind, please comment correspond line with @
start python.exe start1.py
start python.exe start2.py
start python.exe start3.py
start python.exe start4.py
start python.exe start5.py
exit

如果是exe程序,不需要加上打开的程序。bat 脚本还是很强大的。
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  Python 脚本 bat