ARM temperature

Is there a simple way to check the ARM temperature in bash?

Assuming you mean CPU temperature
In the terminal type
cat /sys/devices/virtual/thermal/thermal_zone0/temp | sed 's/^\(.\{2\}\)/\1./' | sed 's/$/ Celsius/'
or with out the formatting
cat /sys/devices/virtual/thermal/thermal_zone0/temp

6 Likes

Thank you! Is this raw value im mCelsius?