Answers:
Option ⌥ +单击蓝牙菜单:
使用ARD(发送UNIX命令)并选择所有需要信息的计算机,您可以尝试使用以下命令以列表形式获取Bluetooth ID和计算机名称。
system_profiler SPBluetoothDataType | sed -n "/Apple Bluetooth Software Version\:/,/Manufacturer\:/p" | egrep -o '([[:xdigit:]]{1,2}-){5}[[:xdigit:]]{1,2}'
下面的命令也将提供相同的信息。
system_profiler SPBluetoothDataType | sed -n "/Apple Bluetooth Software Version\:/,/Manufacturer\:/p" | tr -s "[\n]" "[ ]" | sed "s:.*Address\: ::g" | sed "s: Manufacturer\:.*::g" | grep "[[:graph:]]"
这两个命令也可以在终端中使用,以获取单个计算机的蓝牙ID。
看一看About this Mac > System Report... > Hardware > Bluetooth
。您会在此处找到所需的有关机器蓝牙设置的所有信息。
在蓝牙面板中,单击下面显示的行,以循环浏览有关ur蓝牙的各种信息,例如硬件名称/型号和MAC地址