PowerFX V1.0 運用説明書 - Microsoft(R) Windows(R) - |
目次 索引 |
第3章 TCLplus | > 3.4 TCLplusコマンド |
バッファの内容を出力します。
flush 【channelid】
なし
channelid
openコマンドの復帰値として取得したチャンネルIDを指定します。また、"stdout","stderr"を指定すると、標準出力、標準エラー出力のバッファの内容を出力します。
なし
なし
ファイルにバッファの内容をすべて出力後、標準出力に完了メッセージを出力します。
set nums 0 for { set i 1} { $i <= 100000 } { incr i } { lappend nums [expr $i * $i] } set chid [open {c:\tmp\data.txt} w+ ] puts $chid $nums flush stdout puts "書き込みを完了しました" close $chid exit |
目次 索引 |