14

我的目标是创建一个 .bat 启动器,它将在Console2中执行命令行 .exe 程序。
我最好的猜测是它应该是这样的:

@echo off
start "" Console.exe program.exe

但它所做的一切都打开了 Console2。
请注意,所有 .bat 和可执行文件都在同一个文件夹中。

4

2 回答 2

19

好的,我查看了 Console.exe 的源代码并深入了解了已编译的帮助。

你需要一个 -r

所以:Console.exe -r program.exe

Command line parameters

Console supports these command line parameters: 

-c <configuration file>
     Specifies a configuration file. 


-w <main window title>
     Sets main window title. This option will override all other main window title settings (e.g. 'use tab titles' setting) 


-t <tab name>
     Specifies a startup tab. Tab must be defined in Console settings.


-d <directory>
     Specifies a startup directory. If you want to parametrize startup dirs, you need to specify startup directory parameter as "%1"\ (backslash is outside of the double quotes) 


-r <command>
     Specifies a startup shell command. 


-ts <sleep time in ms>
     Specifies sleep time between starting next tab if multiple -t's are specified. 
于 2012-06-14T01:56:46.353 回答
10

我从没听说过这个程序,但是它的源代码

   else if (wstring(argv[i]) == wstring(L"-r"))
             {
                     // startup cmd
                     ++i;
                     if (i == argc) break;
                     startupCmds.push_back(argv[i]);
             }

看起来您可能想尝试:

Console.exe -r program.exe
于 2012-06-14T01:54:22.917 回答