Commit 3cb804f9 authored by Andrew Titmuss's avatar Andrew Titmuss

oops there was a debug line...

parent 2ae20041
...@@ -1508,14 +1508,12 @@ getdisk () { ...@@ -1508,14 +1508,12 @@ getdisk () {
disk_total=${disk_total/G} disk_total=${disk_total/G}
if [[ "$disk_used" == *"T" ]]; then if [[ "$disk_used" == *"T" ]]; then
touch "terabyte_used"
disk_used=${disk_used/T} disk_used=${disk_used/T}
disk_used=$(echo "${disk_used} * 1000" | bc) disk_used=$(echo "${disk_used} * 1000" | bc)
disk_used=${disk_used/'.'*} disk_used=${disk_used/'.'*}
fi fi
if [[ "$disk_total" == *"T" ]]; then if [[ "$disk_total" == *"T" ]]; then
touch "terabyte_total"
disk_total=${disk_total/T} disk_total=${disk_total/T}
disk_total=$(echo "${disk_total} * 1000" | bc) disk_total=$(echo "${disk_total} * 1000" | bc)
disk_total=${disk_total/'.'*} disk_total=${disk_total/'.'*}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment