2つのノードに対するiperfのスループット測定結果を比較し、差が2割以上だった時に通知を出したいと考えています。

・スループット測定の結果から、スループット測定の結果の数字(ここでは20.2と10.2)のみを抜き出す方法
・抜き出した数値を計算する方法

の2点についてご教示願えませんでしょうか。

書けるところまで書いてみたソースは、下記の通りです。

#!/bin/sh

# スループット測定1
echo "TCP_DL 01"
iperf -c 10.242.23.199 -i 1 -t 5 -f m  >> TCPDL1.txt
tail -n 1 TCPDL.txt
tail -n 1 TCPDL.txt >> throughput1

# スループット測定2
echo "TCP_DL 02"
iperf -c 10.242.23.200 -i 1 -t 5 -f m >> TCPDL2.txt
tail -n 1 TCPDL2.txt
tail -n 1 TCPDL2.txt >> throughput2

#測定結果の比較
if (throughput1)*0.8 > throughput2 
then 
echo "スループット低下"
else
echo ""
fi

実行結果です。

TCP_DL 01
[  4]  0.0- 5.1 sec  11896 MBytes  19393 Mbits/sec
TCP_DL 02
[  4]  0.0- 5.0 sec  12490 MBytes  20952 Mbits/sec
iperf.sh: line 20: syntax error near unexpected token `0.8'
iperf.sh: line 20: `if (throughput1)0.8 > throughput2'