本机rsync同步脚本(未开启压缩功能)



本机rsync同步脚本(未开启压缩功能)
 
#!/bin/bash
#to quick back the files!    www.2cto.com  
#xtao 2012.10.8 v0.1
 
if [ $# -ne 2 ];then
 echo "Usage: $0 <source dir> <remote dir>  "
 echo "See logs in the dir which submited the command!"
 echo "e.g., $0 /root/ /tmp/back/, to backup dir "root"  to "/tmp/back/""
 exit -1
fi
 echo "See logs in the dir which submited the command!"
 nohup rsync -vrtopgu $1 $2 >&rsync.LOG &
 

相关内容

    暂无相关文章