:
Show the number and info of Processors
Module data
module_begin module_name CPU Info module_type generic_data_string module_exec cat /proc/cpuinfo | grep processor | wc /proc/cpuinfo | grep model | grep name | tail -1 | awk '{print "x"$4$5$6$7$8$9}' >> /tmp/inf.txt ; cat /tmp/inf.txt | tr -d "\n" module_description Show processors info (number and info) module_end
(Visited 210 times, 1 visits today)