Linux
從 iftop 中提取一行
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:"