3

notify-send显示一个通知框,其中包含您要在自己的机器上显示的消息。

有没有办法向notify-send另一个用户发送通知消息并在他的机器上显示消息?

4

1 回答 1

8

Bash 可以写入网络套接字但不能听/读。你可以使用GNU Netcat来实现这个功能。

监听端口 10000 的网络通知阅读器(无安全性):

#!/bin/bash

# no multiple connections: needs to improve
while true; do
    line="$(netcat -l -p 10000)"
    notify-send -- "Received Message" "$line"
done

和相应的客户:

#!/bin/bash

host="$1"
echo "$@" >/dev/tcp/$host/10000

所以你可以使用发送消息

notify-sender.sh  your-host message
于 2010-04-24T13:48:52.203 回答