将日期从文件传递到mysql的Shell脚本

时间:2013-11-08 21:54:29

标签: mysql linux shell scripting debian

如何执行从文件中读取日期的linux批处理脚本,将其作为参数传递给mysql脚本,然后将当前日期写入文件?

类似的东西:

  1. 读取日期文件(日期为yyyy-mm-dd的一行)
  2. mysql -u user -ppass< update.sql
  3. update.sql:update table set x = y其中$ datefrom1和curdate()之间的日期
  4. 将curdate()写入datefile

1 个答案:

答案 0 :(得分:1)

这是一个值得学习的概念证明。你可以从这里找到解决方案。

$ cat data
fox
$ aa=`cat data`
$ echo $aa
fox
$ echo The quick $aa jumped
The quick fox jumped over the lazy dog
$ echo The quick $aa jumped over the lazy dog > bb
$ more bb
The quick fox jumped over the lazy dog