in reply to How to run a tcl program within a perl program.
Sure there are a lot of ways ...
system ( "yourprog.tcl");
... or maybe something like this ...
open TCL, "|tcl" or die "cannot start tcl:$!\n"; print TCL <<CODE; some tcl command other tcl command CODE close TCL
|
|---|