每次打开应用程序时,我都需要运行两个命令。如何在一个快捷方式中为这两个命令创建快捷方式。让我举个例子:
我有两个命令:
D:\spl\v231_CCB\bin>splenviron.cmd -e v231_CCB
D:\spl\v231_CCB\bin>spl start
如果我想先运行命令1并命令2秒,那么如何根据我的桌面创建快捷方式?
答案 0 :(得分:1)
splenviron.cmd -e v231_CCB && spl start
适用于windows / ubuntu
如果你想要一个快捷方式,你应该创建一个脚本,bat(windows)或sh(unix)文件来执行上面的命令。或者,正如其他聪明人已经说过的那样,为此命令创建一个别名:)
答案 1 :(得分:0)
使用此文件创建批处理文件,然后单击该文件。
@echo off
pushd "D:\spl\v231_CCB\bin"
call splenviron.cmd -e v231_CCB
call spl start
执行spl
将取决于splenviron.cmd
是否运行并终止或继续运行。