I want to use (execute) a unix command e.g. 'cp <filename> <dir>' inside the
tcl script. Like in perl, is there any command in tcl that helps running the
unix command from inside the tcl-script.
Thanks in advance.
vic
But, like perl, you'll find that most of what you can do in the shell
you can do in Tcl using Tcl commands.
--
Glenn Jackman
Ulterior Designer
Such as:
file copy $filename $dir
in this instance.
Michael