DOC HOME SITE MAP MAN PAGES GNU INFO SEARCH
 

list(TCL)


list -- create a list

Syntax

list [arg arg ...]

Description

This command returns a list comprised of all the args, or an empty string if no args are specified. Braces and backslashes are added as necessary, so that the lindex command may be used on the result to re-extract the original arguments, and also so that eval may be used to execute the resulting list, (with arg1 comprising the command's name and the other args comprising its arguments). list produces slightly different results to concat: concat removes one level of grouping before forming the list, while list works directly from the original arguments. For example, the command

list a b {c d e} {f {g h}}

will return

   a b {c d e} {f {g h}}
while concat with the same arguments will return
   a b c d e f {g h}

See also


© 2003 Caldera International, Inc. All rights reserved.
SCO OpenServer Release 5.0.7 -- 11 February 2003