今天写了一个shell脚本,直接执行是可以的。
但是用任务计划却不执行。
脚本如下:
#!/bin/bash
time=0504
timea=05
mysqd -f -u root dts < /backup/dts_message_history_2015$time.sql
纠结了半天,后来改成绝对路径就可以了
脚本如下:
#!/bin/bash
time=0504
timea=05
/usr/local/mysql/bin/mysqd -f -u root dts < /backup/dts_message_history_2015$time.sql
本文出自 “陨落星空” 博客,请务必保留此出处http://xiao987334176.blog.51cto.com/2202382/1642022
原文地址:http://xiao987334176.blog.51cto.com/2202382/1642022