#!/bin/sh
echo -n GPU:
vcgencmd measure_temp
# echo CPU:
theTemp=`cat /sys/class/thermal/thermal_zone0/temp`
echo "CPU: `expr $theTemp / 1000`'C"
