I need something similar:
$ tclsh --run-command puts hello
to print out: hello.
hello
Like -c in bash.
-c
bash
The simplest is to create a TCL script: runner.tcl with the following content:
runner.tcl
#runner.tcl eval $argv
Use:
$ tclsh runner.tcl puts hello