文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>备份脚本

备份脚本

时间:2007-11-14  来源:blueantelope

#!/bin/bash

#----------------------------
#--- blueantelope
#--- blueantelope@
#--- backup.sh
#--- backup for your system
#--- 0.01
#--- 2007-11-14
#----------------------------

#
GetDate=`date +%Y_%m_%d`
SetDir='/backup'
timeout=5
ExeShell='tar -czf'

# Check backup diretory else to create it
if [ ! -d $SetDir ]; then
    mkdir $SetDir
    chmod 700 $SetDir
    chown root $SetDir
fi

# Backup for /etc/
$ExeShell $SetDir/etc$GetDate.tar.gz /etc/*

# Backup for /var/log
$ExeShell $SetDir/log$GetDate.tar.gz /var/log/*

chmod 700 $SetDir/*

sleep $timeout
相关阅读 更多 +
排行榜 更多 +
Unity Connect

Unity Connect

学习教育 下载
青橙记录本

青橙记录本

商务办公 下载
脑洞惊魂夜

脑洞惊魂夜

休闲益智 下载