How can I wrap an interactive tclsh session with TclDevKit?
With TclPro this:
prowrap -out shell -uses tclsh -startup "" some.tcl
wraps some.tcl
, and when I call ./shell
it launches an interactive tclsh session. When typing source some.tcl
from that shell it calls the wrapped file. So -startup ""
tells TclPro not to use any startup script.
How can I do the same with TclDevKit? I have tried -startup ""
, but it had no effect.