#!/bin/bash
# df 파티션 85% 이상시 메일 보내기
set -x
df |sed /Filesystem/d|awk '$5 >= 85 {print $5,$6}' > /root/dflist
x=`awk '{print NR}' /root/dflist`
if [ $x -le 1 ]
then
echo `hostname >> /root/dflist`
# echo $x
mail jrsim@nayana.com < /root/dflist
fi
exit 0