Created
May 2, 2018 03:40
-
-
Save leilee/4064b3fe93e78a14b22b595dd263cb48 to your computer and use it in GitHub Desktop.
echo bluetooth device battery
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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