Browse Source

Fixed parsing uptime when it has no decimal point

pull/450/head
Donal Cahill 10 years ago
parent
commit
4d3fd6e1b3
  1. 2
      functions/fn_details_distro

2
functions/fn_details_distro

@ -57,7 +57,7 @@ swapfree=$(free ${option} | awk '/Swap:/ {print $4}')
# Uptime
uptime=$(</proc/uptime)
uptime=${uptime%%.*}
uptime=${uptime/[. ]*/}
minutes=$(( uptime/60%60 ))
hours=$(( uptime/60/60%24 ))
days=$(( uptime/60/60/24 ))

Loading…
Cancel
Save