Really fix openSUSE uptime command

This commit is contained in:
Dylan 2016-02-09 09:02:07 +11:00
parent 74d4943115
commit 9a3a3bc83d
1 changed files with 6 additions and 1 deletions

7
fetch
View File

@ -501,11 +501,16 @@ getuptime () {
case "$os" in
"Linux")
case "$distro" in
"Puppy Linux"* | "Quirky Werewolf"* | "Precise Puppy"* | "openSUSE"*)
"Puppy Linux"* | "Quirky Werewolf"* | "Precise Puppy"*)
uptime=$(uptime | awk -F ':[0-9]{2}+ |(, ){1}+' '{printf $2}')
uptime=${uptime/ / }
;;
"openSUSE"*)
uptime=$(uptime | awk -F ':[0-9]{2}+[a-z][a-z] |(, ){1}+' '{printf $2}')
uptime=${uptime/ / }
;;
*)
uptime="$(uptime -p)"
;;