我需要获得处理器的型号。 使用:
cat /proc/cpuinfo | grep 'model'
返回:
model : 60
model name : Intel(R) Core(TM) i5-4460 CPU @ 3.20GHz
model : 60
model name : Intel(R) Core(TM) i5-4460 CPU @ 3.20GHz
model : 60
model name : Intel(R) Core(TM) i5-4460 CPU @ 3.20GHz
model : 60
model name : Intel(R) Core(TM) i5-4460 CPU @ 3.20GHz
我需要:
model : 60
model : 60
model : 60
model : 60
我不想在价格之后grep我需要在模型之后grep。 我怎么能得到这个?
谢谢,
答案 0 :(得分:2)
cat /proc/cpuinfo | grep -E 'model[[:space:]]*:'
或
cat /proc/cpuinfo | grep -P 'model\s*:'
应该做的 - 后者只适用于支持perl兼容正则表达式的-P标志的grep版本,例如GNU grep。