Name
append
— Append text to a variable.
Synopsis
append
varreference
string
Description
The append command takes two arguments, a variable reference, and a string to append to the variable.
Example
set foo "bar"
append $foo "beebop"
# The foo variable now contains the string barbeebop
Produces:
barbeebop