LINUX下用CRON实现定时执行脚本清空一个表的数据?

LINUX下用CRON实现定时执行脚本清空一个表的数据?

LINUX下用CRON实现定时执行脚本清空一个表的数据。

/etc目录下不是有crontab吗?


------------------------
SHELL=/bin/bash
PATH=/sbin:/bin:/usr/sbin:/usr/bin
MAILTO=root
HOME=/

# run-parts
01 * * * * root ntpdate 210.72.145.44 >/dev/null 2>&1
#47 2 * * * root php /root/sendstat.php >/dev/null 2>&1

01 * * * * root run-parts /etc/cron.hourly
02 4 * * * root run-parts /etc/cron.daily
22 4 * * 0 root run-parts /etc/cron.weekly
42 4 1 * * root run-parts /etc/cron.monthly
#01 3 * * * root /usr/sbin/bakmysql
01 3 * * * root /usr/sbin/repop3
50 10 * * * root run-parts /etc/cron.my/delete_table_msg.sh

---------------------------
“50 10 * * * root run-parts /etc/cron.my/delete_table_msg.sh”这条是我加的。是要每天10:50执行delete_table_msg.sh

delete_table_msg.sh的内容如下:
------------------------
#!/bin/sh
/home/bestu/mysql -h localhost -u admin -p mypass < /etc/cron.24/job.sql;
------------------------

job.sql的内容如下:
------------------------------------------------------------------
use mydatabase;
delete from mytable;
------------------------------------------------------------------


但是没有较果, 请问高手是哪里可能出错了呢?

看一下log是怎么说的
應該是 /home/bestu/mysql -h localhost -u admin -pmypass < /etc/cron.24/job.sql
而不是 /home/bestu/mysql -h localhost -u admin -p mypass < /etc/cron.24/job.sql

不過更建議 echo "truncate mytable|/home/bestu/mysql -h localhost -u admin -pmypass mydatabase"
请问一下root用户是什么权限的人? 我是服务器提供商提供的linux空间,使用他提供的用户名密码进入的。我是不是root用户?
此外用corn 命令添加的定时执行脚本和直接在corntab中编辑添加命令有何不同?