我尝试使用 CMD(命令提示符)打开多个 Python .py 文件/代码实例。因此,我创建了一个扩展名为 .bat 的文件,每次我想打开多个 .py 文件/代码时都会运行它。
这是来自 .bat 文件的代码
@echo off
"e:\Carte\BB\App-one.py"
"e:\Carte\BB\App-two.py"
"e:\Carte\BB\App-three.py"
"e:\Carte\BB\App-four.py"
"e:\Carte\BB\App-five.py"
我唯一的问题是,当我第一次单击并且 Python 关闭时,cmd 将只打开第一个“App-one.py”
因此,我必须运行两次 .bat 文件才能打开所有 Python 文件/代码。
现在,我想通过一次单击打开所有.py 文件,而不是两次。
我怎样才能做到这一点 ?
答案1
你应该使用start
命令来运行每个项目。
@echo off
start "cmd1" "e:\Carte\BB\App-one.py"
start "cmd2" "e:\Carte\BB\App-two.py"
start "cmd3" "e:\Carte\BB\App-three.py"
start "cmd4" "e:\Carte\BB\App-four.py"
start "cmd5" "e:\Carte\BB\App-five.py"
Start a program, command or batch script, opens in a new/separate Command Prompt window.
Syntax
START "title" [/D path] [options] "command" [parameters]
Key:
title Text for the CMD window title bar (required.)
path Starting directory.
command The command, batch file or executable program to run.
parameters The parameters passed to the command.