将 bash 命令的输出存储到数据库

发布于 2024-10-30 02:52:58 字数 182 浏览 5 评论 0原文

我想将 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

久随 2024-11-06 02:52:58

使用 awk 解析 iptables 输出时,将其格式化为 Mysql INSERT 语句,然后将结果通过管道传输到 mysql 命令行。像这样的东西:

iptables -vL | awk {your awk commands here} | mysql --user=foo --password=bar yourdatabasename

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:

iptables -vL | awk {your awk commands here} | mysql --user=foo --password=bar yourdatabasename
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文