Arch_FS=`df -h | grep -i arch | awk '{print $4}' | tr -d %`
if [ "$Arch_FS" -gt "70" ];
then
echo -e "Arch Filesystem usage is higher than the threshold on `hostname`"
echo "`df -h arch`" | mailx -s "Filesystem usage is higher than threshold on `hostname`" test@gmail.com
else
echo -e "Arch Filesystem usage is Under threshold on `hostname`"
fi