fix network
This commit is contained in:
parent
2053255c9f
commit
257e59e067
|
@ -62,7 +62,7 @@ then
|
||||||
outb=$(printf "%.2f MB/s" $(echo "scale=2; $outbound / 1024 / 1024" | bc))
|
outb=$(printf "%.2f MB/s" $(echo "scale=2; $outbound / 1024 / 1024" | bc))
|
||||||
elif [ $outbound -gt 1024 ]
|
elif [ $outbound -gt 1024 ]
|
||||||
then
|
then
|
||||||
outb=$(printf "%.2f MB/s" $(echo "scale=2; $outbound / 1024" | bc))
|
outb=$(printf "%.2f KB/s" $(echo "scale=2; $outbound / 1024" | bc))
|
||||||
else
|
else
|
||||||
outb=$(printf "%i B/s" $outbound)
|
outb=$(printf "%i B/s" $outbound)
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in New Issue