#!/bin/sh if [ -e /proc/acpi/thermal_zone/THM0/temperature -a \ -e /proc/acpi/thermal_zone/THM1/temperature ]; then watch cat /proc/acpi/thermal_zone/THM0/temperature \ /proc/acpi/thermal_zone/THM1/temperature elif [ -e /proc/acpi/thermal_zone/THM0/temperature ]; then watch cat /proc/acpi/thermal_zone/THM0/temperature else watch cat /proc/acpi/thermal_zone/THM/temperature fi