当前位置: 技术问答>linux和unix
shell获取CPU数
来源: 互联网 发布时间:2016-05-05
本文导语: 环境:Linux or AIX 用shell如何获取CPU个数,如果是双核CPU,那获取的CPU个数应该是几个呢? | cat /proc/cpuinfo |grep processor|sed '$!d'|awk '{print $3}' | AIX prtconf|grep 'Number Of Proce...
环境:Linux or AIX
用shell如何获取CPU个数,如果是双核CPU,那获取的CPU个数应该是几个呢?
用shell如何获取CPU个数,如果是双核CPU,那获取的CPU个数应该是几个呢?
|
cat /proc/cpuinfo |grep processor|sed '$!d'|awk '{print $3}'
|
AIX
prtconf|grep 'Number Of Processors' | awk '{printf("%sn",$4)}'
prtconf|grep 'Number Of Processors' | awk '{printf("%sn",$4)}'