in reply to How to run a tcl program within a perl program.

The Tcl module allows one to start a Tcl interpreter within a perl program and execute Tcl code. Alternatively, one could simply execute a tcl program via a system function:
system "tclsh file.tcl";

-Mark