I wound up creating a little `proc run_script {fn...
# magic
p
I wound up creating a little
proc run_script {fname} {
set fl [open $fname]
set data [read $fl]
close $fl
eval $data
}
t
Isn't there a
source
command ?
p
Yeah, Stephan woke me to this! Much betterer.