#!/bin/bash

a=0

echo "please insert the refresh time that you want: "
read a

while [ 1 -eq 1 ]; do
    sensors
    sleep $a
    clear
    done