在 lm-sensors 中仅显示两行

在 lm-sensors 中仅显示两行

我想在我的 conky 设置中添加 lm-sensors,但它总是显示以下内容:

coretemp-isa-0000
Adapter: ISA adapter
Physical id 0: +41.0°C (high = +82.0°C, crit = +102.0°C)
Core 0: +41.0°C (high = +82.0°C, crit = +102.0°C)
Core 1: +40.0°C (high = +82.0°C, crit = +102.0°C)

我想在 conky 中只显示 2 行(针对两个核心)。有没有办法告诉传感器只显示 2 行,或者让 conky 执行此操作?

答案1

跑步:

sensors | tail -n3 | head -n2

tail -n3将输出最后 3 行(最后有一个空行),然后head -n2输出您想要的前 2 行(并丢弃空行)。

答案2

您可以使用仅过滤以任意数字grep开头的行,如下所示:Core X:X

sensors | grep '^Core\s[[:digit:]]\+:'

相关内容