Bat脚本cmd到console2

时间:2014-02-25 10:07:43

标签: console2

在某些.bat文件中,我有以下行

start "tomcat product" cmd /K mvn tomcat7:run  %ENV_PARAMS% -P%MAVEN_PROFILE%

我想将其更改为使用console2而不是cmd,但没有运气。

任何人都可以帮助我吗?

1 个答案:

答案 0 :(得分:0)

我知道有点晚了,但万一有人还需要:

在console2中使用启动程序 Console.exe -r program.exe

如果您需要在console2的特定标签中运行它,请使用带有标签名称的-t参数。

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

-r <command>
 Specifies a startup shell command. 

Example.bat:

"C:\Program Files (x86)\Console2\Console.exe" -r "/K notepad.exe" -t "cmd"

运行console2,在名为cmd的选项卡中打开notepad.exe。