Forum OpenACS Q&A: Re: TCL command line argument is always glob style. How to change it?

the command line globbing is not performed by tcl, but already by the shell you are using. Tcl "sees" only the already expanded arguments. In order to pass wildcards to the tcl shell, quote the arguments accordingly (e.g. 'param*').

btw, this is not the correct place to ask, you should consult http://groups.google.com/group/comp.lang.tcl/topics with purely tcl related questions.