标签: perl curl system
我编写了一个perl脚本,用于解析工具中的SNMP陷阱,并使用curl将它们发送到消息队列。
行为不正常的代码行如下所示
$runcode=system(<the curl commands goes here>)
$runcode=system(<the curl commands goes here>
成功执行curl应该返回0其他它应该返回Curl的退出代码(没有零值)
但即使成功卷曲,我在运行代码中得到256?
有任何建议可以解决这个问题吗?