我无法将控制台中的命令输出保存为Ruby作为变量。我试图将.p12文件的信息保存为变量p12_info
。这是我到目前为止所尝试的。
file = File.read("certificate.p12")
p12 = OpenSSL::PKCS12.new(file, "")
p12_info = `openssl pkcs12 -in #{p} -info -noout -passin pass:""`
print "Info: "
puts p12_info
这是我得到的输出:
File name: certificate.p12
MAC Iteration 1
MAC verified OK
PKCS7 Encrypted data: pbeWithSHA1And40BitRC2-CBC, Iteration 2048
Certificate bag
Certificate bag
PKCS7 Data
Shrouded Keybag: pbeWithSHA1And3-KeyTripleDES-CBC, Iteration 2048
Shrouded Keybag: pbeWithSHA1And3-KeyTripleDES-CBC, Iteration 2048
Info:
当我尝试设置变量p_12时,控制台命令似乎正在运行,但实际上并没有保存到p12_info中。
或者如果我试试这个:
p12_info = `echo "foo`
print "Info: "
puts p12_info
然后我得到了这个输出,这就是我想要的:
File name: certificate.p12
Info: foo
任何关于为什么会发生这种情况的想法将不胜感激。
编辑:
@tadman - 非常感谢你的帮助。你是对的,命令确实输出了附加的> /dev/null
。不幸的是,我无法弄清楚如何使用popen3。我对这一切都很陌生......我试过了:
Open3.popen3(`openssl pkcs12 -in bad_certificate.p12 -info -noout -passin pass:""`) {|stdin, stdout, stderr, wait_thr|
pid = wait_thr.pid # pid of the started process.
p12_info = wait_thr.stderr # Process::Status object returned.
}
无济于事。任何可能引导我朝正确方向发展的指针?非常感谢。
答案 0 :(得分:1)
你错过了一些东西。一个是popen3
接受一个字符串参数,反引号导致外部shell调用巧合地返回一个字符串。
反引号约定来自bash
shell,它用于内联命令的结果:
ls -l `which ls`
这可以扩展到:
ls -l '/bin/ls'
考虑到这一点,你应该拥有的是:
Open3.popen3('openssl pkcs12 -in bad_certificate.p12 -info -noout -passin pass:""') do |stdin, stdout, stderr, wait_thr|
# stderr is a standard IO filehandle
p12_info = stderr.read
end