4 lines
158 B
Bash
Executable File
4 lines
158 B
Bash
Executable File
#! /bin/bash
|
|
|
|
paste <(cat /sys/class/thermal/thermal_zone*/type) <(cat /sys/class/thermal/thermal_zone*/temp) | column -s $'\t' -t | sed 's/\(.\)..$/.\1°C/'
|