DOC HOME
SITE MAP
MAN PAGES
GNU INFO
SEARCH
append(TCL)
append -- append to variable
Syntax
append
varName
[
value value value ...
]
Description
Appends all of the
value
arguments to the current value of variable
varName
. If
varName
doesn't exist, it is given a value equal to the concatenation of all the
value
arguments. This command provides an efficient way to build up long variables incrementally. For example,
append a $b
is much more efficient than
set a $a$b
if
$a
is long.
© 2003 Caldera International, Inc. All rights reserved.
SCO OpenServer Release 5.0.7 -- 11 February 2003