With the following Tcl script, the entry widget will not accept input. It appears but is unresponsive.
Given a simple tcl proc like proc foo {a b} {puts \"$a $b\"} What tcl command can I use to print out the procedure foo ... that is I want the text of the proc back ...
I am half-way through writing an Expect script on a Linux server which is supposed to telnet to a router in order to collect some system information. So far my script can succe开发者_JAVA技巧ssfully m
When calling script as tclsh ./TestDriver.tcl TestList the tcl script stops after one (?) line. But when called with output redirected to a file
I\'m trying to get this simple program to work on windows, but it crashes: unsigned (__stdcall testfoo)(ClientData x)
I want to clear the screen (on the local machine) after exiting from my (semi) interactive expect script. Can I do that from within the script?Here\'s what I tried, that failed.
We are testing a DSL modem\'s web pages (the HTTP server is running on the modem). We have an automation tool t开发者_高级运维hat configures various options on the web pages by sending
I wrote tcl script as an glue between different apps which are computationally intensive. When I run top command I see that 2 cpu\'s are 100% utilized.
Does anyone know what files are required for MySql to work with a Tcl Starkit?Currently, I have libmySQL.dll, libmysqltcl.dll, and pkgIndex.tcl.The pkgIndex.tcl has the following code:
How do I give input to a Tcl s开发者_高级运维cript through the keyboard? Is there any thing like scanf() in C?The gets command is probably what you want.