Skip to content

Instantly share code, notes, and snippets.

@augustine-tran
Created March 30, 2016 18:02
Show Gist options
  • Save augustine-tran/006b1bf7403cbaf42752b11f369591f4 to your computer and use it in GitHub Desktop.
Save augustine-tran/006b1bf7403cbaf42752b11f369591f4 to your computer and use it in GitHub Desktop.
uptime | awk -F'( |,|:)+' '{if ($7=="min") m=$6; else {if ($7~/^day/) {d=$6;h=$8;m=$9} else {h=$6;m=$7}}} {print "{\"days\":",d+0,", \"hours\":",h+0,", \"minutes\": ",m+0,"}"}'
//{"days": 0 , "hours": 9 , "minutes": 40 }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment