Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
返された結果cat /sys/class/net/wlan0/statistics/rx_bytesをバイトではなくMB(メガバイト)で表示する方法はありますか?
cat /sys/class/net/wlan0/statistics/rx_bytes
アドバイスをありがとう。
expr次のようにコマンドを使用できます。
expr
# expr $(cat /sys/class/net/wlan0/statistics/rx_bytes) / 1024 / 1024
編集:は整数用なので、次のように浮動小数点数にexprのみ使用できます。bc
bc
# echo "$(cat /sys/class/net/wlan0/statistics/rx_bytes) / 1024 / 1024" | bc -l