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