Created
May 5, 2015 04:17
-
-
Save utsengar/bfdb5f0f53346e0a39ba to your computer and use it in GitHub Desktop.
Check Battery health for a Mac (result in %, should be 100% for a brand new mac)
This file contains 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
echo $(ioreg -l -n AppleSmartBattery -r | grep MaxCapacity | awk '{print $3}') / $(ioreg -l -n AppleSmartBattery -r | grep DesignCapacity | awk '{print $3}') \* 100 | bc -l |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Source: https://news.ycombinator.com/item?id=9490791