TCL: Recursively search subdirectories to source all .tcl files

后端 未结 7 2083
独厮守ぢ
独厮守ぢ 2021-02-14 09:33

I have a main TCL proc that sources tons of other tcl procs in other folders and subsequent subdirectories. For example, in the main proc it has:

source $basepa         


        
7条回答
  •  悲哀的现实
    2021-02-14 10:24

    It gets trivial with tcllib on board:

    package require fileutil
    foreach file [fileutil::findByPattern $basepath *.tcl] {
        source $file
    }
    

提交回复
热议问题