Does anyone have the command line options for running Jeemon?
I know that it automatically runs the application.tcl file but is there a way to do debugging, running other files, etc...
Thanks
This forum has moved to forum.jeelabs.net - this read-only archive is for reference only!
Does anyone have the command line options for running Jeemon?
I know that it automatically runs the application.tcl file but is there a way to do debugging, running other files, etc...
Thanks
This is still work in progress. I'm trying to decide what set of features will be least confusing, yet powerful enough to support multi-platform use, and remote debugging (since JeeMon is also for use on small embedded Linux boxes).
First off, you can give the path to a Tcl script and JeeMon will run it more or less like a tclsh/wish command would. I use that to run some standard Tcl scripts I have (not all JeeMon-related). This does not use the "rig" mechanism, i.e. no "proc start" etc.
You can give the name of a directory, and JeeMon will look for "application.tcl" inside that directory. This is a way to launch the same JeeMon for different uses.
For simple examples, I now often try things out with "application.tcl" next to JeeMon, and once it is done, I move it into a new subdir with some appropriate name. Freeing me to use application.tcl for new experiments again.
You can start as "JeeMon Console" to launch the built-in TkCon GUI console. That in turn can be used to connect to another instance of JeeMon running locally or elsewhere on the network (see
For the recent simple JeeMon projects, though, I did none of the above. Just used "puts" and "Log" calls to debug and restart. Very primitive, but still effective if you develop things progressively.