Skip to content

Instantly share code, notes, and snippets.

@leilee
Created May 2, 2018 03:40
Show Gist options
  • Save leilee/4064b3fe93e78a14b22b595dd263cb48 to your computer and use it in GitHub Desktop.
Save leilee/4064b3fe93e78a14b22b595dd263cb48 to your computer and use it in GitHub Desktop.
echo bluetooth device battery
ioreg -r -k "BatteryPercent" | awk -F " = " '/"Product" = / {print $2":"} /"BatteryPercent" = / {print $2"%"}' | sed 'N;s/\n/ /;' | sed -e 's/"//g'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment