![]() |
Available news archives:
comp.lang.tcl
-
comp.lang.python
-
comp.security.firewalls
-
sci.crypt -
comp.lang.php -
comp.lang.javascript
|
|
comp.lang.tcl archiveRe: Calling one tcl script from another with parameters
From: <slebetman@yahoo.com>
Date: Mon Dec 19 2005 - 10:40:35 CET
Ranjan wrote:
You forgot to call the tcl interpreter:
exec tclsh xyz.tcl a b c
Actually, doing source will also work, just manually set argv and argc:
global argc argv
|