#!/bin/bash

IDLE=$(mpstat 1 1 | grep Average | awk '{print $NF}')
CPU=$(echo "100 - $IDLE" | bc -l)

echo "${CPU}%"



