Is there a way to pass arguments of a proc from command line? I have my proc in a script. I would like to give its arguments from command line. Is there any equivalent command like "$@" in shell scripting?
|
You can get command line arguments using these predefined variables.
|
|||
|
|
|
There are many parts of command line arguments:
The simplest way of passing all “useful” argument words — all the words that you'd normally think of as being arguments — to a procedure is to do this (assuming Tcl 8.5 or later):
Note that this must come after all calls to I often like to wrap the above in a bit of exception handling in production code so that any errors can be reported nicely instead of dumping a stack trace:
Prior to 8.5, you needed a more ugly way:
This is still safe (in a formal sense) because of how Tcl guarantees to construct list values, and the fact that we know |
|||
|
|
|
There is also
so calling foo will print this:
Please note that calling this proc with $argv will treat entire content of $argv as a single element in $argc list:
you will need to use |
|||
|
|
