notify-send显示一个通知框,其中包含您要在自己的计算机上显示的消息。
有没有办法使用notify-send向另一个用户发送通知消息并在他的机器上显示消息?
答案 0 :(得分:7)
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