Created
September 20, 2014 03:39
-
-
Save gbuesing/b3d456132adf7b2ff574 to your computer and use it in GitHub Desktop.
Clear the Bluetooth attributes cache on Mac OS X
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
#!/bin/sh | |
# Clear the Bluetooth attributes cache on Mac OS X | |
# From http://expertsoverflow.com/questions/23549859/clearing-corebluetooth-gatt-cache-without-removing-bond | |
sudo defaults write /Library/Preferences/com.apple.Bluetooth CoreBluetoothCache -dict | |
sudo launchctl unload /System/Library/LaunchDaemons/com.apple.blued.plist | |
sudo launchctl load /System/Library/LaunchDaemons/com.apple.blued.plist |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment