#!/bin/bash

TEMP=`cat /sys/class/thermal/thermal_zone0/temp`
TEMP=`expr $TEMP / 1000`
echo "$TEMP C"
