- 论坛徽章:
- 0
|
本帖最后由 zhmysh 于 2010-09-02 16:20 编辑
脚本如下:
#!/bin/bash
cd /home/bak_call_log
#deal with call_log table and record operation log
baktable {
local baktime=$1
/usr/local/mysql/bin/mysql -uroot -pxxxxx -e"use aps;create table call_log_${baktime} select * from call_log where start_time <'"${baktime}"-01 00:00:00';"
if [ $? = 0 ]
then
echo "`date +%Y-%m-%d-%T` sucess for create table">>/home/bak_call_log/call_log_bak.log
else
echo "`date +%Y-%m-%d-%T` no sucess for create table">>/home/bak_call_log/call_log_bak.log
exit 1
fi
sleep 7
/usr/local/mysql/bin/mysql -uroot -pxxxxx -e"use aps;delete from call_log where start_time <'"${baktime}"-01 00:00:00';"
if [ $? = 0 ]
then
echo "`date +%Y-%m-%d-%T` sucess for delete record">>/home/bak_call_log/call_log_bak.log
else
echo "`date +%Y-%m-%d-%T` no sucess for delete record">>/home/bak_call_log/call_log_bak.log
exit 1
fi
sleep 7
/usr/local/mysql/bin/mysqldump -uroot -pxxxxx --opt aps call_log_${baktime} |gzip >/home/bak_call_log/call_log_${baktime}.sql.gz
if [ $? = 0 ]
then
echo "`date +%Y-%m-%d-%T` sucess for bak file">>/home/bak_call_log/call_log_bak.log
else
echo "`date +%Y-%m-%d-%T` no sucess for bak file">>/home/bak_call_log/call_log_bak.log
exit 1
fi
sleep 7
/usr/local/mysql/bin/mysql -uroot -pxxxxx -e"use aps;drop table call_log_${baktime};"
if [ $? = 0 ]
then
echo "`date +%Y-%m-%d-%T` sucess for drop table">>/home/bak_call_log/call_log_bak.log
else
echo "`date +%Y-%m-%d-%T` no sucess for drop table">>/home/bak_call_log/call_log_bak.log
exit 1
fi
}
#这是第46行
# set date time
if [ `date +%m` -ne 01 || `date +%m` -ne 02 ]
then
btime=`date +%Y-%m |awk -F"-" '{$2=$2-2;print $1,0$2}'|sed 's/[[:space:]]/-/g'`
baktable $btime
sleep 1
else
btime=`date +%Y-%m |sed 's/0/1/2'`
baktable $btime
sleep 1
fi
[root@database bak_call_log]# sh -n call_log.sh
call_log.sh: line 45: syntax error near unexpected token `}'
call_log.sh: line 45: `} '
[root@database bak_call_log]# dos2unix call_log.sh
dos2unix: converting file call_log.sh to UNIX format ...
[root@database bak_call_log]# sh -n call_log.sh
call_log.sh: line 45: syntax error near unexpected token `}'
call_log.sh: line 45: `} '
[root@database bak_call_log]#
我检查一下,语法没错,系统是CentOS release 5.3 (Final),老是提示语法错误,头痛的很。。。 |
|