What is the open
command in Tcl used for?
I'm developing on Linux.
What is the open
command in Tcl used for?
I'm developing on Linux.
TCL "Tool Command Language" or "command tool language"
It is a script language created by John Ousterhout
It is mainly used for the rapid development of prototypes, "script" applications, graphical interfaces and tests. The combination of Tcl with Tk (from English Tool Kit) is known as Tcl / Tk, and is used for the creation of graphical interfaces.
It was initially thought to join simple programs in C, giving shape to a simple application.
Open Allows you to run a program and communicate with it using standard input / output. The program must be written in such a way that it performs all the data exchange through the standard input and output.
You can find information at: