回答:
Option ⌥ + Bluetoothメニューレットをクリックします。
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:]]"
両方のコマンドをターミナルで使用して、1台のマシンのBluetooth IDを取得することもできます。
見てくださいAbout this Mac > System Report... > Hardware > Bluetooth
。マシンのBluetooth設定について必要なすべての情報があります。
bluetooth prefpaneで、下に表示されている行をクリックして、ハードウェア名/モデルやMACアドレスなど、ur bluetoothに関するさまざまな情報を順に表示します。