cpu_info_list example
This commit is contained in:
parent
e10b6ef42c
commit
ba9136a430
|
@ -0,0 +1,16 @@
|
|||
require 'rbsigar'
|
||||
|
||||
sigar = Sigar.new
|
||||
|
||||
infos = sigar.cpu_info_list
|
||||
|
||||
num = infos.length
|
||||
|
||||
puts num.to_s + " total CPUs.."
|
||||
|
||||
infos.each do |info|
|
||||
puts "Vendor........" + info.vendor
|
||||
puts "Model........." + info.model
|
||||
puts "Mhz..........." + info.mhz.to_s
|
||||
puts "Cache size...." + info.cache_size.to_s
|
||||
end
|
Loading…
Reference in New Issue