May 7, 2010
Pushed perl-Sys-CPU to Fedora repository. You can use it like:
~~~~ {.perl} use Sys::CPU;
$number_of_cpus = Sys::CPU::cpu_count(); printf(“I have %d CPU’s”, $number_of_cpus);
print " Speed : “, Sys::CPU::cpu_clock(),”“; print” Type : “, Sys::CPU::cpu_type(),”"; ~~~~