4. 使用watch命令,配合ifconfig、more /proc/net/dev、cat /proc/net/dev来实时监控。比如执行 watch -n 1 "ifconfig eth0"

Every 1.0s: ifconfig eth0Thu May 4 20:26:45 2017

eth0 Link encap:Ethernet HWaddr FA:16:3E:7E:55:D1

inet addr:10.213.17.31 Bcast:10.213.23.255 Mask:255.255.248.0

inet6 addr: fe80::f816:3eff:fe7e:55d1/64 Scope:Link

UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1

RX packets:31350149703 errors:0 dropped:0 overruns:0 frame:0

TX packets:27674701465 errors:0 dropped:0 overruns:0 carrier:0

collisions:0 txqueuelen:1000

RX bytes:13663400883450 (12.4 TiB) TX bytes:5098104759633 (4.6 TiB)

watch可以帮你监测一个命令的运行结果,省得你一遍遍的手动运行。在Linux下,watch是周期性的执行下个程序,并全屏显示执行结果。
————————————————
版权声明:本文为CSDN博主「weixin_39962770」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/weixin_39962770/article/details/111719794