Top "Tcl" questions

Tool Command Language was invented by John Ousterhout as a way to make it easy to write little languages for configuring EDA tools, but it has grown far beyond those humble beginnings to become a general scripting language with built-in asynchronous I/O and Unicode strings while supporting paradigms such as object-oriented programming and coroutines.

How to make a GUI for bash scripts?

I want to make some graphical dialogs for my script but don't know how. I hear something about GTK-Server or …

user-interface bash gtk tcl tk
Waiting for background processes to finish before exiting script

How do I make sure that all my background processes have finished execution before I exit my script (TCL/Bash). …

bash shell unix tcl grep
TCL remove an element from a list

How te remove an element from TCL list say: which has index = 4 which has value = "aa" I have Googled and …

list element tcl
Get the version of TCL from the command-line?

I'm looking for a very straight-forward way of getting the version of the TCL installed on a machine from the …

tcl
the if statement in TCL

I have a question about if statement in tcl of the following code: if {(($number == 1)&&($name == "hello")) || (($number == 0)&…

tcl
How to set border color of certain Tkinter widgets?

I'm trying to change the background color of my Tkinter app, but for certain widgets it leaves a white border …

python colors tkinter tcl border
TCL string concat

What is the recommended way of concatenation of strings?

string tcl concatenation concat
TCL : Concatenate a variable and a string

Assume we have a variable 'a' set to 12345 : set a 12345 Now how do i set a new variable 'b' which …

tcl
Read file into String and do a loop in Expect Script

What I am trying to do is to: Create a .exp file, which will read from the *.txt file from …

shell unix loops tcl expect
round number to 2 decimal places

I need to round a number to two decimal places. Right now the following rounds to the nearest integer I …

tcl rounding