TCL中的文件读取、写入和追加
在TCL中,如何使用for
循环或foreach
循环将不同的内容附加到单个文件中?
In TCL, how to append different content into a single file using the for
loop or foreach
loop?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
你是不是有类似的意思?
您以
a
(追加)模式打开文件file
并写入文件描述符(示例中的$fo
)。更新:如果您想附加变量内容,则必须将脚本更改为:
Did you mean something like that?
You open file
file
in modea
(append) and write to the file descriptor ($fo
in the example).Update: If you want to append variable contents, you have to change the script to:
以下代码在文件夹
'P'
中创建一个文本文件并写入其中。The following code creates a text file in folder
'P'
and writes into it.以下代码适合从文件中读取,其中
sample.tcl
文件位于“p”文件夹中。标题
The following code is fine for reading from a file, where
sample.tcl
file is available in 'p' folder.Heading