Hi team,
I am new to tcl threading, so kindly help me to implement parallel execution of tcl script.
Tried:(Code)
puts "start"
set tid [thread::create ] ;# Create a thread
thread::send $tid {exec c:/windows/system32/notepad.exe &}
puts "end"
current execution flow:
Executing "notepad.exe"...