Linux的例行性备份

这是自己通过学习为自己的Linux 主机做的一个简单的例行性备份的脚本:
引用:
#!/bin/bash
# This shell is used to backupday something.
#
#       bafnn           2007-12-22
#
# This is a test shell.
day=`date +%Y-%m-%d`
dir="/root/bafnn"
cd $dir
tar -zcvf etc.$day.tar.gz /etc
#
# This is ftp
id="software"
passwd='chenLinux'
ftp -n 192.168.1.242 > $dir/backup.ftp.log 2>&1 <<EOC
user    $id     $passwd
put etc.2007-12-22.tar.gz
bye