#!/bin/bash
src=/root/server/ic/
dst=/var/server_data/ic/
dateTime=`date +%Y%m%d-%H:%M`
mount -t cifs -o username=everyone,password="" //192.168.1.2/bak $src
Backup () {
newFile=`ls -At $src |head -n 1` > /tmp/ic.src #按时间顺序排列的第一文件
if [ -z "$newFile" ];
then
echo "Bak Null" |mail -s "Bak Null!" 111111@sina.com
else
\cp -a $src$newFile $dst
File=`ls -At $dst |head -n 1` > /tmp/ic.dst
diff /tmp/ic.src /tmp/ic.dst
if [ $? -eq 0 ];
then
echo "$dateTime $File OK" >> /root/log/ic.log
else
echo "$dateTime $File Fail" >> /root/log/ic.log
fi
fi
rm -f /tmp/ic.*
}
Backup
umount $src
#每月5号1:00执行
0 1 5 * * /sh/bak.sh 2>>/log/ic.err
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。