题目:
写一个脚本:
判断当前主机的CPU生产商,其信息在/proc/cpuinfo文件中vendor id一行中。 如果其生产商为AuthenticAMD,就显示其为AMD公司; 如果其生产商为GenuineIntel,就显示其为Intel公司; 否则,就说其为非主流公司。 #! /bin/bash m=`cat /proc/cpuinfo |grep vendor_id |awk -F ':' '{print $2}'|tail -1` if [ $m == "GenuineIntel" ] then echo "cpu is GenuineIntel" if [ $m == "AuthenticAMD" ] then echo "cpu is AuthenticAMD" else echo "cpu is 非主流" fi