将 bash 命令的输出存储到数据库
我想将 iptables -vL 命令的输出存储到 mysql 数据库表中。当我运行 iptables -vL 时,它会显示使用情况(以字节为单位)以及用户 MAC ID。我计划使用 awk 从上述命令的输出中选择两列(使用“$2”和 MAC id 的“$6”)。这两个 clomuns 应该进入数据库。每当更新表时,数据库中的使用情况列都应该累加。
I want to store the output of iptables -vL
command into a mysql database table. When I run iptables -vL
it shows usage in bytes along with users MAC id's. I am planning to use awk to select two columns (usage "$2" and MAC id's "$6") from the output of the above command. And those two clomuns should go to the database. The usage column in the database should add up whenever the tables are updated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 awk 解析 iptables 输出时,将其格式化为 Mysql INSERT 语句,然后将结果通过管道传输到 mysql 命令行。像这样的东西:
When parsing the iptables output with awk, format it out as Mysql INSERT statements, and then pipe the results into the mysql command line. Something like: