fix network

This commit is contained in:
Linux User 2022-08-13 21:39:07 +00:00
parent 2053255c9f
commit 257e59e067
1 changed files with 1 additions and 1 deletions

View File

@ -62,7 +62,7 @@ then
outb=$(printf "%.2f MB/s" $(echo "scale=2; $outbound / 1024 / 1024" | bc))
elif [ $outbound -gt 1024 ]
then
outb=$(printf "%.2f MB/s" $(echo "scale=2; $outbound / 1024" | bc))
outb=$(printf "%.2f KB/s" $(echo "scale=2; $outbound / 1024" | bc))
else
outb=$(printf "%i B/s" $outbound)
fi