备份脚本
时间: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
#----------------------------
#--- 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
相关阅读 更多 +
- 系统休眠文件删除后果 如何删除计算机的休眠文件 2025-04-22
- 站群服务器是什么意思 站群服务器的作用 站群服务器和普通服务器的区别 2025-04-22
- jQuery插件有何作用 jQuery插件的使用方法 2025-04-22
- jQuery插件有哪些种类 简单的jQuery插件实例 2025-04-22
-