Chinaunix首页 | 论坛 | 博客
  • 博客访问: 73979
  • 博文数量: 47
  • 博客积分: 1230
  • 博客等级: 中尉
  • 技术积分: 525
  • 用 户 组: 普通用户
  • 注册时间: 2011-04-22 13:59
文章分类

全部博文(47)

文章存档

2012年(9)

2011年(38)

分类: Python/Ruby

2011-04-25 18:29:16

Linux上加载windows共享目录命令以下供参考。

mount //10.167.226.119/share /mnt/winshare -o username=guest,password=asdfxxxx
 
 
#!/bin/bash
#Function:backup directory 'data' to dest 'qvbackp'
#Date:2011 04 22
#Version:1.0.0.0
declare -i count=$#
#1.backup
if [ $count == 1] && [ "$1" == "--help" ] ; then
   echo "help for usage"
elif [ $count == 2 ] ; then
   srcdir=$1
   destdir="$2"
   if [ ! -d "$srcdir" ] ;then
      echo "No such file or directory"
   elif [ ! -d "$destdir" ] ;then
      mkdir -p $destdir
   fi
   if [ -d "$srcdir" ] && [ -d "$destdir" ] ;then
      destfile="$destdir/$(date +%Y-%m-%d-%H-%M-%S)_data.tgz"     
      echo $srcdir
      echo $destfile
      echo "${destdir}/snapshot"
   cd /
      tar -g "${destdir}/snapshot" -zcf $destfile data
   fi
fi
 
#2.upload backupdata to FTP:??不需要
host="10.167.223.206"
id="guest"
pw="guest"
localfile=$destfile
remotedir="/backup"
#3.transport the copy of backuped files:??不需要
ftp -n "$host" > $2/../ftp.log  2>&1 <user $id $pw
binary
cd  $remotedir
put $localfile
bye
EOF
exit 0
阅读(480) | 评论(0) | 转发(0) |
0

上一篇:0425下午

下一篇:shell编程基础

给主人留下些什么吧!~~