我在Windows中使用以下命令从Perl脚本运行Tcl(expect)脚本。
system("C:/Tcl/bin/tclsh86 C:/Users/sysadmin/desktop/expect.tcl");
有人可以告诉我它在Ubuntu中的等效命令。
答案 0 :(得分:0)
如果安装了Tcl 8.6,它只是:
system("tclsh8.6 /path/to/expect.tcl");
如果未安装,请使用apt-get install tcl8.6
(当然需要以root用户身份运行)或使用包管理器GUI进行修复。