Tcl Built-In Commands list(1T)
_________________________________________________________________
NAME
list - Create a list
SYNOPSIS
list ?arg arg ...?
_________________________________________________________________
DESCRIPTION
This command returns a list comprised of all the args, or an
empty string if no args are specified. Braces andbackslashes get added as necessary, so that the lindex com-
mand may be used on the result to re-extract the original
arguments, and also so that eval may be used to execute theresulting list, with arg1 comprising the command's name and
the other args comprising its arguments. List produces slightly different results than concat: concat removes onelevel of grouping before forming the list, while list works
directly from the original arguments.EXAMPLE
The commandlist 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
lappend(1T), lindex(1T), linsert(1T), llength(1T), lrange(1T), lreplace(1T), lsearch(1T), lset(1T), lsort(1T) | KEYWORDSelement, list
ATTRIBUTES
See attributes(5) for descriptions of the following attri-
butes: Tcl Last change: 1Tcl Built-In Commands list(1T)
_______________________________________
| ATTRIBUTE TYPE | ATTRIBUTE VALUE|
|____________________|__________________|_
| Availability | runtime/tcl-8 |
|____________________|__________________|_
| Interface Stability| Uncommitted ||____________________|_________________|
NOTES Source for Tcl is available on http://opensolaris.org. Tcl Last change: 2