Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在为 Perl 中的 Mumble 服务器编写 Nagios 插件(为了体验 - 已经有很多可用的了),但我已经遇到了障碍。我想做的是cURL用来连接到 Mumble 绑定的端口——如果连接成功,我cURL只想打印一个 0,如果失败,它应该打印一个 1。查看手册页我找不到任何可以复制这种行为的标志。有任何想法吗?这可以以更优雅的方式完成,还是使用不同的实用程序?
cURL
为什么不使用 IO::Socket 并检查是否可以这样连接?似乎在 cURL 上这将比完全轻量级轻一些。