使用rsync的备份脚本
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用rsync的备份脚本相关的知识,希望对你有一定的参考价值。
Simple backup script using Rsync
#!/bin/sh mtnpnt="/mnt/hd/" src="/dir/" disk="/dev/sd" dest="/mnt/usb_harddrive/dest/" if grep '/mnt/hd' /etc/mtab > /dev/null 2>&1; then echo "already mount... - $(date)" > logfile rsync -avm $src --exclude-from=/dir/exclude-file $dest >> logfile df -h >> logfile umount $disk else echo "not mount ... - $(date)" > logfile mount $disk $mntpnt if grep '/mnt/hd" /etc/mtab > /dev/null 2>&1; then echo "mount by script... - $(date) >> filelog rsync -avm $src --exclude-from="/dir/exclude-file $dest >> logfile df -h >> logfile else echo "failed .. - $(date)" > filelog fi fi
以上是关于使用rsync的备份脚本的主要内容,如果未能解决你的问题,请参考以下文章