我编写了一个小脚本来自动将我的蓝牙耳机连接到我的 linux 机器。
#!/bin/bash
bluetoothctl
wait ${!}
connect XX:XX:XX:XX:XX:XX #headphone MAC address
wait ${!}
exit
脚本打开bluetoothctl
但不运行以下任何命令。
我编写了一个小脚本来自动将我的蓝牙耳机连接到我的 linux 机器。
#!/bin/bash
bluetoothctl
wait ${!}
connect XX:XX:XX:XX:XX:XX #headphone MAC address
wait ${!}
exit
脚本打开bluetoothctl
但不运行以下任何命令。
您可以
bluetoothctl
在 shell 脚本中使用如下命令:或者:
例如:
奇迹般有效。当在和之间添加“睡眠”延迟时
pair
,它特别有用,以便有时间发现和设置 BT 设备。trust
connect
bluetoothctl
就像是
将不起作用,因为
sleep
不被识别为下的命令bluetoothctl
。