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.

Cannot launch git gui using cygwin on windows

I used to launch git gui within my cygwin console without any problems but since I updated cygwin I've got …

git cygwin tcl x11 tk
error: curl: /usr/local/lib/libcurl.so.4: no version information available (required by curl)

Hello i have this error when i run curl from tcl error: curl: /usr/local/lib/libcurl.so.4: no version …

curl tcl libcurl
How to concisely concatenate strings in Tcl?

I can easily concatenate two variables, foo and bar, as follows in Tcl: "${foo}${bar}". However, if I don't want …

string tcl concatenation
Read Bash environment variable in TCL

How to read a shell environment variable in your Tcl script. So anyone please help me. I am very new …

tcl
List of All Tkinter Events

In Python tkinter module, <Button-1>, <Button-2> and <Button-3> are used to identify mouse button …

python events tkinter tcl
Python tcl is not installed properly

I just installed graphics.py for python. But when I tried to run the following code: from graphics import * def …

python graphics tcl
How can I cut the substring from a string in tcl

I have string like NYMEX UTBPI. Here I want to fetch the index of white space in middle of NYMEX …

tcl
How can I redirect stdout into a file in tcl

how can I redirect a proc output into a file in tcl, for example, I have a proc foo, and …

tcl
Why is topdir set to its default value when rpmbuild called from tcl?

I have a tcl script which 'exec' rpmbuild. When doing so, the 'topdir' used by rpmbuild is wrong. I have …

tcl rpm
How to replace particular character in string with tcl script?

set some_string "Name/is/ComplexSTRUCTUre" convert this string to, some_string = "Name/is/ComplexSTR.CTUre" i.e replacing first "…

string tcl character-replacement