0
通常、私はPythonで動作しますが、私はPerlでプロジェクトを持っています。だから:snmpwalkの結果を文字列にするプロセスは何ですか?私は文字列がより小さな文字列を含んでいるかどうかを調べるために文字列を検索したいと思います。perl snmpwalk to string
foreach (@list){
chomp($_);
system("snmpwalk -v 2c -c community-string $_ oid-hidden");
if (index($string, $substring) != -1) {
print "'$string' contains '$substring'\n";
}
}
[Net :: SNMP](https://metacpan.org/pod/Net: :SNMP)、pure-Perlモジュール、またはnet-snmpライブラリへのPerlバインディングである[SNMP.pm](http://www.net-snmp.org/docs/perl-SNMP-README.html) – ThisSuitIsBlackNot