ubuntu – 从bash向IRC频道发送消息

前端之家收集整理的这篇文章主要介绍了ubuntu – 从bash向IRC频道发送消息前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在我的ubuntu服务器(192.168.1.2,example.com)上安装了ircd-hybrid.
我们使用#teamchannel在团队内部进行交流.

问题是:如何从bash脚本中将example.com的一些短消息发送到#teamchannel?例如example.com:提醒!服务器现在正在重启

编辑:

我找到了a perl script,它完全符合我的需要.

使用console irc client
apt-get install ii
ii -i /tmp -s 192.168.1.2
echo "/PRIVMSG #teamchannel example.com: Alert! The server is rebooting now" > /tmp/irc/in
原文链接:https://www.f2er.com/ubuntu/348619.html

猜你在找的Ubuntu相关文章