Build precise queries to find exactly what you need
Press ESC to close
Nagios World Conference 2026: Sept. 14-17 in St. Paul, MN | Learn More
Works as expected when uptime is higher than a day.
When it is not, the output looks like this: “System Uptime – up 11 Hours, 16, 2 users Minutes”
I just put the line 7 inside an if that checks if there is an instance of “day” in the variable and formats accordingly:
if [[ $struptime == *day* ]]; then struptime1=${struptime%,} else struptime1=${struptime%, *} fi
I hope it helps =)