从TCL输出变量到文本文件

时间:2015-10-07 12:32:11

标签: file-io tcl

我现在在TCL脚本中有三个字符串变量。 Var1 Var2和Var3。

我想将它们附加到output.txt的末尾,它们之间有空格。

所以添加的行将是这样的:

Var1 Var2 Var3

2 个答案:

答案 0 :(得分:1)

SELECT w.id, w.title, 
       GROUP_CONCAT(
          DISTINCT CONCAT(i.imPath,'|',i.caption) 
          ORDER BY CONCAT(i.imPath,'|',i.caption) 
          SEPARATOR ',') AS images
FROM works w
LEFT JOIN images i ON w.id=i.work_id
WHERE w.isActive=1
GROUP BY w.id, w.title
ORDER BY w.ordr

答案 1 :(得分:0)

您要open模式append文件。然后,write the string to the opened channel。您可能希望字符串为double-quoted string,因此可以替换变量。然后,close文件。