1

我有一个问题,我需要将尾部输出保存到 mysql。我可以将输出保存到文件中,这是 tail 命令:

tail -f file_ | egrep --line-buffered param_ > path_destinty

对于我的应用程序,有必要在编写时保存信息。

有小费吗?

4

1 回答 1

1

例子:

 tail -f file_ | \
 grep -E --line-buffered param_ | \
 while read line; do \
 mysql -E -u root -p root -h 127.0.0.1 'INSERT INTO `test`.`test` (`text`, `updated`) VALUES ("'${line}'", NOW());'; done

管道:

  1. 尾随你的文件
  2. 因为不推荐使用 egrep,所以使用 grep -E
  3. 循环解析数据并将它们发送到 MySQL

MySQL的参数:

-E       Execute query
-u       Username
-p       Password for this user
-h       Host/IP
`test`   is the name of the database and table
${line}  our varible with text
于 2013-10-31T13:50:38.890 回答