我想在桌面上实时显示日志文件中的消息。 (fedora 24 上的 xfce4)
我的想法是通过在 shell 脚本中使用 notification-send 和 tail -f 来做到这一点。
到目前为止我有两个 shell 脚本:
read_data.sh
write_data.sh
两者都分叉一个进程并通过管道进行通信。
write_data.sh
:
tail -f /var/log/logfile > mypipe
read_data.sh
:
mkfifo mypipe
while true
do
echo "read now from pipe"
if read line <mypipe; then
echo $line
fi
done
不幸的是我收到一条错误消息:
EPIPE (Broken pipe)
我用strace来分析一下发生了什么:
write_data.sh
:
strace tail -f /var/log/logfile > mypipe
....
write(1, "Message from logfile"..., 281) = -1 EPIPE (Broken pipe)
--- SIGPIPE {si_signo=SIGPIPE, si_code=SI_USER, si_pid=7314, si_uid=0} ---
+++ killed by SIGPIPE +++
strace read_data.sh
...
read(0, "\n", 1) = 1
dup2(10, 0) = 0
fcntl(10, F_GETFD) = 0x1 (flags FD_CLOEXEC)
close(10) = 0
open(".", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFDIR|0550, st_size=4096, ...}) = 0
getdents(3, /* 133 entries */, 32768) = 5400
getdents(3, /* 0 entries */, 32768) = 0
close(3) = 0
write(1, "message from logfile ....
) = 62
rt_sigprocmask(SIG_BLOCK, [CHLD], [], 8) = 0
rt_sigprocmask(SIG_SETMASK, [], NULL, 8) = 0
write(1, "read now from pipe\n", 19read now from pipe
) = 19
open("/tmp/mypipe", O_RDONLY
read_data.sh
此时会阻塞。
知道为什么会发生这种情况吗?
答案1
SIGPIPE 是由于您的读取循环在每次迭代时打开和关闭 FIFO 文件以进行读取而引起的。试试这个:
while read line; do
echo "$line"
done <"$pipe"