Browse Source

Merge pull request #450 from DinCahill/master

Fixed parsing uptime when it has no decimal point
pull/451/head
Daniel Gibbs 10 years ago
parent
commit
f78e201e6c
  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