Linux::Cpuinfo - Object Oriented Interface to /proc/cpuinfo
NAME
Linux::Cpuinfo - Object Oriented Interface to /proc/cpuinfo
SYNOPSIS
use Linux::Cpuinfo;
my $cpuinfo = Linux::Cpuinfo.new();
my $cnt = $cpuinfo.num_cpus(); # > 1 for an SMP system
for $cpuinfo.cpus -> $cpu {
say $cpu.bogomips;
}