defaults write /Library/Preferences/com.apple.Bluetooth.plist ControllerPowerState 0
#關閉藍牙服務
defaults write /Library/Preferences/com.apple.Bluetooth.plist ControllerPowerState 1
#打開藍牙服務
killall blued
#結束所有藍牙服務進程
launchctl unload /System/Library/LaunchDaemons/com.apple.blued.plist
#卸載藍牙Daemon
launchctl load /System/Library/LaunchDaemons/com.apple.blued.plist
#載入藍牙Daemon
launchctl start com.apple.blued
#重啟藍牙Daemon