Skip to content

Instantly share code, notes, and snippets.

@gbuesing
Created September 20, 2014 03:39
Show Gist options
  • Save gbuesing/b3d456132adf7b2ff574 to your computer and use it in GitHub Desktop.
Save gbuesing/b3d456132adf7b2ff574 to your computer and use it in GitHub Desktop.
Clear the Bluetooth attributes cache on Mac OS X
#!/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