我正在尝试使用fileevent
(应该只有 Tcl 8.4 版本,所以我不能使用chan
命令)来跟踪文件。
% proc GetData {chan} {
set data [read $chan]
puts "[string length $data] $data"
if {[eof $chan]} {
fileevent $chan readable {}
}
}
%
%
%
% set fp [open "|tail -f /home/dinesh/input" r+]
file7
% fconfigure $fp
-blocking 1 -buffering full -buffersize 4096 -encoding utf-8 -eofchar {{} {}} -translation {auto lf}
% fconfigure $fp -blocking 0 -buffering line
%
%
%
%
% fileevent $fp readable [list GetData $fp]
%
我已经cat
在另一个终端中使用命令更改了文件内容,但仍然GetData
没有被调用。
有了gets $fp line
,我可以得到修改后的内容,但为什么 fileevent 没有被触发?