我从视频中“复制”了一个 bash 脚本,该脚本打开我的蓝牙并连接到我的蓝牙耳机
#!/bin/bash
systemctl enable bluetooth.service
systemctl start bluetooth.service
echo -e 'power on \nconnect MAC_Address \nquit' | bluetoothctl
当我刚刚启动耳机并尝试使用此脚本将其连接到我的电脑时,它无法连接或只需要一些时间才能连接(执行脚本后需要几秒钟)。
或者,有时我必须再次运行脚本才能连接。
但是,有时,它只是完美连接。
我的脚本有问题吗?