我正在尝试使用uses
语句来实现类似于以下示例的内容:
uses Process;
...
var s : ansistring;
...
if RunCommand('/bin/bash',['-c','echo $PATH'],s) then
writeln(s);
uses
语句在编译期间导致错误。
知道为什么吗?
答案 0 :(得分:1)
Inno Setup / Pascal Script中没有uses
语句。
您只能使用functions listed in Inno Setup documentation。
要添加新功能,您有两种选择:
procedure MyDllFunc(hWnd: Integer; lpText, lpCaption: AnsiString; uType: Cardinal);
external 'MyDllFunc@files:MyDll.dll stdcall';
使用#include
preprocessor directive从其他文件中包含它们。
#include "MyFunctions.pas"
无论如何,要回答您的真实问题,请使用Exec
function。
要收集已执行命令的输出,请参阅How to get an output of an Exec'ed program in Inno Setup?