Tagged 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.

learn more… | top users | synonyms

38
votes
27answers
4k views

Why won't Tcl die?

I've been forced to code in Tcl a number of times, and just can't wrap my head around this language. It's not just that it is syntactically different than c-like languages: Lisp is different but ...
13
votes
4answers
2k views

Why is modulus different in different programming languages?

Perl print 2 % -18; --> -16 Tcl puts [expr {2 % -18}] --> -16 but VBScript wscript.echo 2 mod -18 --> 2 Why the difference?
12
votes
3answers
1k views

The Simplest Steps to Converting TCL TK to a Stand Alone Application

After running into major compatitiblity problems with C#, ASP.NET, MS Access, Linux, and Mono, I've decided to program in a language that is cross-platform, open source, and compatible with embedded ...
10
votes
11answers
876 views

Getting started with Tcl TK?

One of my modules at university next year is going to involve programming in Tcl tk, I was wondering where to find the best resources and information about the language, so that I am well prepared. ...
10
votes
11answers
10k views

How to do 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 something like that. If someone knows how to link Bash with tcl/tk I also be satisfied. ...
10
votes
11answers
2k views

How do I retrofit a GUI to an existing C program?

I've been working on a project of porting an old solaris CL program to run on Linux, and barring some unrelated hardware issues, that's finished. Now I want a GUI for it, so the user can choose among ...
9
votes
11answers
2k views

Hidden Features of TCL/TK

I've been working with TCL/TK ,recently started to use TCL/TK with my automation applications and I'm hungry for knowledge. To continue with the long line of Hidden Feature questions, I would like to ...
7
votes
4answers
339 views

Other solutions/languages that are superior to the TCL-based Expect?

I am amazed by how Expect (TCL) can automate a lot of things I normally could not do. I thought I could dig deeper into Expect by reading a book, but before I do that I want to ask if there are other ...
7
votes
4answers
3k views

Tcl/Tk examples?

Tcl/Tk is a simple way to script small GUIs. Can anyone give a nice example with a button and a text widget. When the button is pressed should a shell command be executed and the output piped to the ...
6
votes
2answers
126 views

How to use a variable as default value of a TCL proc argument

I've got a variable that I would like to use as default value for an argument: proc log {message {output $::output}} { .... } Is there a way to do this or need I to evaluate the variable inside ...
6
votes
2answers
100 views

Prevent Tcl from crashing on unknown command

I'm doing eval on the content of file. The file is made out of labels which I parse. Each line has a label, and I have a proc defined for each label, so that the eval succeeds. However, sometimes ...
6
votes
2answers
265 views

How do Lisp (Clojure) and Tcl compare in terms of abstraction and metaprogramming abilities?

Both seem to be good for building extensible API's and code generation. What are the main differences between them? What do you see as their strengths, weaknesses, ...
6
votes
1answer
236 views

Tcl Anonymous Functions

A Purely theoretical question on Tcl. Following this question I was thinking on what would be the best way to implement anonymous functions in Tcl. The end result should be allowing a developer to ...
6
votes
3answers
248 views

Picking a front-end/interpreter for a scientific code

The simulation tool I have developed over the past couple of years, is written in C++ and currently has a tcl interpreted front-end. It was written such that it can be run either in an interactive ...
6
votes
2answers
555 views

Book Recommendations To Learn Tcl/Tk

I'm now in love with Tcl/Tk because of the flexibility and easy way to do the things, but I like to learn by books, then I want some book recommendation to learn.
6
votes
8answers
657 views

Create a Fully Featured Environment For Tcl/Tk Development Under Windows

I'm now learning Tcl/Tk, but as I'm running Windows, I want to create a fully featured(professional) development environment for this language, but I need to know: Which tools I need to ...
6
votes
2answers
3k views

Should I use Perl/Tk, Tcl::Tk or Tkx for a Perl GUI?

I really like Perl/Tk, but have come to the opinion that it's DOA. I think Tcl::Tk and Tkx are better solutions. Assume I drop Perl/Tk. Is the "most supported" route to go with Tcl::Tk (which hasn't ...
5
votes
3answers
94 views

How to track a log file in TCL

Say there is a file log.txt and some kind of log is being appended to it permanently. I want to track that file in the TCL environment. I have tried this but it didn't worked. set log [open log.txt ...
5
votes
2answers
79 views

Static detection of errors in Tcl scripts

I have developed some code, and I'm facing problem with error flagging of the Tcl interpreter on a Linux machine. #!/usr/bin/tclsh if {1} { puts "abc1" } elseif {} { puts "abc2" } The above ...
5
votes
4answers
198 views

Static variable in Tcl

Is it possible to declare a static variable in Tcl? I use a certain function to catch unknown command errors, and I want it to print an error message on the first appearance of an unknown command - so ...
5
votes
1answer
135 views

Creating python c module independent of python version?

In Tcl, there is a concept of stubs, where you can have a C extension that works with any compatible version of Tcl. Is there a comparable concept for Python? I'd like to distribute a binary module ...
5
votes
4answers
642 views

TCL as a Server Side Programming Language

I am getting ready to build a web application (app) and was interested in using DHTML and TCL. I have been building apps in TCL for awhile and feel pretty comfortable with using this language. I ...
5
votes
3answers
8k views

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 to put an intermediate result into a variable, how can I easily concatenate the ...
5
votes
1answer
440 views

Steps to Create A Tcl Starkit on a Windows Platform

I am trying to figure out the basic steps to creating a Tcl starkit in Windows. I've asked a similar question before, as well as purchased a book on Tcl programming, visited wiki.tcl.tk, emailed Tcl ...
5
votes
3answers
1k views

Know any creative ways to interface Python with Tcl?

Here's the situation. The company I work for has quite a bit of existing Tcl code, but some of them want to start using python. It would nice to be able to reuse some of the existing Tcl code, ...
4
votes
2answers
58 views

How to add a variable amount of arguments to exec in tcl?

I've been working with TCL for some time now, and I have spent a long time trying to do the following (it seems easy and I think it should be, but I can't get it right): I need to execute an external ...
4
votes
1answer
51 views

Is it possible to get the Creation order/Insertion order of elements in a TCL array?

Tcl arrays are great for look up tables, but they are stored as "unordered sets" in theory. Is there anyway to iterate thru them in the order elements were added to the array without adding extra ...
4
votes
1answer
95 views

TCL extensions that depends on each other

My question is a little bit similar to this but it is about TCL extensions. I am using C on Linux (gcc) and I have a package with three modules A, B, and C. Module A contains functions and also ...
4
votes
1answer
120 views

regular expression to match everything between two words

Writing a TCL script to match everything in between two key words Example: X509v3 Extended Key Usage: 1.2.3.4, 1.3.6.1.4.1.311.4, 1.1.1.1, 234.432.1.36.4564.345 55.55.55.55, 66.66.66.66, ...
4
votes
3answers
185 views

I/O performance in mzscheme

Being a Linux administrator, I used to write my scripts in Bash, TCL and, less often, in Perl. Just out of curiosity, I tried to write something in mzscheme, but what I found out was that the ...
4
votes
2answers
59 views

How do I efficiently (mem/time) modify all elelements of a list in Tcl?

To operate on each element of a list, returning a modified list various languages have explicit constructs. In Perl there's map: perl -e 'my @a = (1..4); print join(q( ), map { $_ * $_ } @a)' 1 4 9 ...
4
votes
6answers
342 views

TCL string match vs regexps

Is it right that we should avoid using regexp as it is slow. Instead we should use string operations. Are there cases that both can be used but regexp is better?
4
votes
3answers
262 views

TCL - find a regular pattern in a file and return the occurrence and number of occurrences

I am writing a code to grep a regular expression pattern from a file, and output that regular expression and the number of times it has occured. Here is the code: I am trying to find the pattern ...
4
votes
2answers
174 views

Tcl variable size limit

I am writing a Tcl script which will be used on an embedded device. The value of a variable in this script will be coming from a text file on the system. My concern is that if the source file is too ...
4
votes
2answers
108 views

tcl: wrap a proc of the same name

I want to replace the definition of "proc N" with a proc of the same name and calling conventions, but with a little extra error detection code. In python I could do what I want like below, but I ...
4
votes
3answers
136 views

Is there anyway to hook up Python/Tkinter to an already running Tcl/Tk app?

I work a lot on Pure Data, an app written in Tcl/Tk and C. I'd like to be able to make a python API for plugins for modifying the Tcl/Tk GUI. To do this, it seems that I would need to be able to ...
4
votes
3answers
418 views

General string quoting for TCL

I'm writing a utility (which happens to be in python) which is generating output in the form of a TCL script. Given some arbitrary string variable (not unicode) in the python, I want to produce a TCL ...
4
votes
7answers
741 views

Do a tail -F until matching a pattern

I want to do a tail -F on a file until matching a pattern. I found a way using awk, but IMHO my command is not really clean. The problem is that I need to do it in only one line, because of some ...
4
votes
1answer
441 views

Calling Tcl procedures with Function pointers as argument from Python

Is it possible to call Tcl procedures that have function pointers (or callback functions) from Python? I am using Tkinter to call Tcl procedures from Python. Python Snippet : proc callbackFunc(): ...
4
votes
1answer
134 views

Emulating lisp cons cells in Tcl

A list in lisp is a series of cons cells, but in Tcl, a list is a string with whitespace separating the elements. For translating code from lisp to tcl, one might simply take lisp lists and translate ...
4
votes
1answer
293 views

parsing html pages from tcl

I using tdom version 0.8.2 to parse html pages. From the help pages I found the following commands to get the ElementById TCL code set html {<html> <head> </head> <body> ...
4
votes
2answers
664 views

Force upper case input in Tcl/Tk entry field

I've got a Tcl/Tk window with an entry box in which I'd like to force upper case character entry. That is, if any letters are typed I'd like them to appear in upper case in the entry field, instead of ...
4
votes
2answers
372 views

What is the state of C10K-like event-based server development in TCL?

TCL is a nice simple programming language, but does not seem to get the credit and/or respect it deserves [1]. I learned it back in 1995 in college and promptly forgot about it only to stumble upon ...
4
votes
4answers
4k views

What is the difference between spawn and exec?

I'm learning to write a TCL (expect) scripts and I notice that some examples show to use spawn, while others show the command exec. I tried googling, but can't find what is the difference? Suppose I ...
4
votes
2answers
848 views

How do I display an image with ltk?

I have written code to read a windows bitmap and would now like to display it with ltk. How can I construct an appropriate object? Is there such functionality in ltk? If not how can I do it directly ...
3
votes
1answer
54 views

Searching for a number in a sorted list in Tcl

I'm using Tcl. I have a sorted list of real numbers. Given the number n I need to find an index of the list element which is: either less of equal to n; or greater than n. Is there any standard ...
3
votes
3answers
59 views

TCL Freeing up memory

I have a basic question regarding memory management in TCL. Suppose I have a Tcl procedure. Inside the procedure I declare an array and add some data in it. I do some number crunching on that ...
3
votes
1answer
60 views

How to bind the '+' and '-' keys is Tcl/Tk

How can I bind the + and - keys to commands in Tcl/Tk?
3
votes
3answers
96 views

Expanded TCL interpreter in TCL

I have implemented many TCL extensions for a specific tool in the domain of formal methods (extensions are implemented in C but I do not want solution to rely on this fact). Thus, the users of my tool ...
3
votes
2answers
82 views

how can i avoid an error :no such environment variable?

i have one problem In my code i am using environment variables But if it(env.var) doesn't exist i get error message NAME_ENV_VAR: no such variable and my script stops to execute for example in line ...

1 2 3 4 5 15