2
votes
What is the difference between spawn and exec?
It's also worth noting that some (many?) programs behave differently when run by a user (ie, at the command line) vs being part of a batch process/run from another process. The actual difference is …
0
votes
Why does string match fails in this “expect” code?
I was under the impression that the expect_out variable was a global. If I'm correct, then you'd need the following:
global expect_out
Or, you can refer to it as a …
2
votes
Object oriented TCL
The object system being included with Tcl is, in effect, an oo framework. While it's possible to work directly with it, it's goal is to be the framework upon which other OO systems can be built on …
4
votes
Predictable order of response to Tcl array names?
The short answer is that you can't rely on the order and your best bet is to [lsort [array names X]] and use that order.
The long answer is that the order should be stable as long as the ke …
13
votes
Getting started with Tcl TK?
Some of the books I have in my library that you might find useful are:
Tcl and the Tk Toolkit (Ousterhout) - The …
7
votes
TCL vs Lua - scripting a mmo server
Honestly, they're both extremely well suited to the task. Both are easy to embed in an application and have a fairly simple syntax. I know for a fact that it's extremely simple to add new commands …
2
votes
how to use Tcl’s (interp) bgerror
Completely edited based on the OP's comments...
The after 0 trick is the following line:
after 0 $httpd eval $cmd
What this does is tell the interp to add …
3
votes
How to efficiently get rest of a Tcl list starting from an index?
Jeff answered your actual question well. That being said, there is one thing worth noting. Getting the length of a list (that's actually a list under the hood) is of O(1), meaning it takes no real …
1
vote
Tcl Starkit that Reads of off a Sqlite Database
It sounds like you're discussing two different things in your question.
The first is the ability to load the sqllite3 library. As noted by Jackson, you'll need to include the sqllite3 libr …
0
votes
How to do apply in Tcl 8.4?
Short answer:
If you have the command name in a variable, you can run it by placing the variable as the first word of the line:
set mycommand puts
$mycomman …
0
votes
What is the best way in Tcl v8.4 to have a proc return an array?
My preference, if you need to use arrays, is the [array get/set] combo you showed:
proc mine {} {
array set foo { red 1 blue 2 green 3 }
array get foo
}
tcl> array set foo [ …
7
votes
whats the difference between a command and a statement
Traditionally, in Tcl, the phrase "everything is a command" means that there's no such thing as a "reserved word" command, or one that is defined by the system that you can't change. Every single e …
4
votes
How to handle big integers (64 bit) numbers in tcl?
As of Tcl 8.5, integers are now Bignums (arbitrary precision)
If you're using an older version (which you've said you are, 8.4.x), you'll need to consider what you need to use the numbers f …
1
vote
Importing proc variable into namespace
Ok, you have two different problems. The first is that the namespace doesn't already exist; the second is that you need to write the code so that the variable is created/written in that namespace. …
3
votes
Passing list to Tcl procedure
It depends on the version of Tcl you're using, but:
For 8.5:
set mylist {a b c}
myprocedure option1 option2 {*}$mylist
For 8.4 and below:
set mylis …
