gpt4 book ai didi

tcl - 如何在其他 tcl 脚本中运行 tcl 脚本?

转载 作者:行者123 更新时间:2023-12-04 00:19:48 51 4
gpt4 key购买 nike

我有两个 tcl 脚本。我想在第一个脚本完成后运行第二个脚本。我该怎么做?

最佳答案

取决于你的真正意思。

一种方法是编写第三个(“主”)脚本

source /the/path/to/the/first.tcl
source /the/path/to/the/second.tcl

另一种方法是将第二个调用添加到 source从上面的例子到第一个脚本的底部。

修改第一种方法:如果要执行的脚本与主脚本位于同一目录,则使用惯用的方式 source他们是
set where [file dirname [info script]]
source [file join $where first.tcl]
source [file join $where second.tcl]

无论当前流程的目录是什么以及项目目录位于何处,这种方式的采购都将起作用。

关于tcl - 如何在其他 tcl 脚本中运行 tcl 脚本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9275098/

51 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com