从 iftop 中 grep 单行

从 iftop 中 grep 单行
iftop -t -L1 -s1

输出:

在此处输入图片描述

iftop -t -L1 -s1 | grep "Total send and receive rate:"

输出:

在此处输入图片描述

我怎样才能只 grep “总发送和接收状态:”行?

答案1

似乎iftop正在将不需要的行写入STDERR。要删除这些行,请grep使用以下命令行。

iftop -t -L1 -s1 2> /dev/null | grep "Total send and receive rate:"

相关内容