16 lines
387 B
Bash
Executable file
16 lines
387 B
Bash
Executable file
#!/bin/sh
|
|
|
|
source $(dirname $0)/traffic_common.sh
|
|
|
|
balance=$((($TPer + $TEph - $TMax) / $BytesPerCent))
|
|
|
|
echo -e \
|
|
"Consumed: $((($TPer + $TEph) / 1024 / 1024)) MB
|
|
($(($TPer / 1024 / 1024)) MB accounted to disk)
|
|
Limit: $(($TMax / 1024 / 1024)) MB"
|
|
|
|
if [ "$balance" -lt 0 ]; then
|
|
echo "There are $(($balance * -1 ))ct left"
|
|
else
|
|
echo "Please donate $balance cent."
|
|
fi
|