Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以找出所有作为给定 .tcl 文件来源的文件?
您最好的选择是替换source或添加traceforsource
source
trace
带有跟踪的示例:
proc putargs args {puts $args} trace add execution enter source {putargs SOURCE} source /path/to/your/file.tcl