It mentions it in the manual:
This command joins each of its arguments together with spaces after trimming leading and trailing white-space from each of them.
You could try using append
instead:
% set pst_data "Power states :-
"
Power states :-
% append pst_data "vcc1 1 0 1
"
Power states :-
vcc1 1 0 1
% append pst_data "vcc1 1 0 1
"
Power states :-
vcc1 1 0 1
vcc1 1 0 1
%
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…