当前位置:  开发笔记 > 编程语言 > 正文

如何使用Inno Setup将命令传递到Windows中的Cygwin控制台

如何解决《如何使用InnoSetup将命令传递到Windows中的Cygwin控制台》经验,为你挑选了1个好方法。

我尝试过这种变化,但除了能够启动cygwin窗口之外没有其他运气.(包裹;为清楚起见)

Filename: "c:\cygwin\bin\bash.exe";
  Parameters: "-c c:/scripts/step1.sh paramX";
  Flags: shellexec waituntilterminated;
  StatusMsg: "Running the script..."

(这是用于内部安装,因此安装了cywin,并且所有路径,脚本都是已知的)



1> Joshua Clayt..:

你的问题是-c告诉bash从下一个参数读取指令:例如

c:\cygwin\bin\bash.exe -c 'for NUM in 1 2 3 4 5 6 7 8 9 10; do echo $NUM; done'

您只需要:

c:\cygwin\bin\bash.exe "/scripts/step1.sh paramX"

所以你的代码看起来像:

Filename: "c:\cygwin\bin\bash.exe";
  Parameters: "c:/scripts/step1.sh paramX";
  Flags: shellexec waituntilterminated;
  StatusMsg: "Running the script..."

也许这对其他人有帮助:)

推荐阅读
勤奋的瞌睡猪_715
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有