linux shell脚本判断文件大小,超过一定大小发送邮件报警

2024-11-17 03:35:06
推荐回答(1个)
回答1:

比如判断文件大于1M
if [ `ls -s file|awk '{print $1}'` -gt 1024 ];then
send email
fi