如何写入当前网络速度

如何写入当前网络速度

我需要将我当前的网络速度写入文件中。

例如:

the_command_you_suggest --number-of-iterations 4 --interval 5 --interface eth0 > output.txt

这就是the_command_you_suggest,例如它运行 4 次,每次迭代等待 5 秒。

我该怎么做?我看到其他命令可以告诉我当前的网络速度,但我无法写入它们。它们大多只是实时的,无法保存。

答案1

安装 nload 并解析(grep + sed + awk 等)其输出并将其写入您的日志文件。

作为参考,请阅读这篇文章:https://www.tecmint.com/nload-monitor-linux-network-traffic-bandwidth-usage/

相关内容