文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>磁盘空间检查的shell脚本

磁盘空间检查的shell脚本

时间:2010-09-26  来源:hero--008



#/bin/sh

#this shell script is used to check the disk's use

#author colin

#file check_df.sh

#date 2010-09-06

home_base=/home/oracle/shell
check_dir=${home_base}/check
check_file=${check_dir}/check_file.txt
check_point=93
cd ${home_base}
if [ ! -d ${check_dir} ]
then
    mkdir -p ${check_dir}
fi

df_use=`df -lh|grep opt|awk '{print substr($5,1,2)}'`

while [ ${df_use} -lt ${check_point} ]
do
echo "the disk is free at" >${check_file}
date +"%Y-%m-%d %H:%M:%S" >>${check_file}
sleep 60m
df_use=`df -lh|grep opt|awk '{print substr($5,1,2)}'`
done
  df -lh|grep opt>${check_file}
  mail -s "disk alert" [email protected] <${check_file}


相关阅读 更多 +
排行榜 更多 +
辰域智控app

辰域智控app

系统工具 下载
网医联盟app

网医联盟app

运动健身 下载
汇丰汇选App

汇丰汇选App

金融理财 下载