Linux

從 iftop 中提取一行

  • August 16, 2017
iftop -t -L1 -s1

輸出:

在此處輸入圖像描述

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

輸出:

在此處輸入圖像描述

我怎樣才能 grep 只是“總發送和接收狀態:”行?

似乎iftop正在將不需要的行寫入STDERR. 要刪除那些供您grep使用的命令行,如下所示。

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

引用自:https://serverfault.com/questions/867107