blecat(https://github.com/mafintosh/blecat) 是利用蓝牙协议编写的命令行小工具,它支持管道操作,也能用来传输文件。
通过一行 npm install -g blecat 命令即可安装 blecat。
比如,在开启蓝牙的两台电脑上,若在其中一台执行:
echo hello world | blecat
那么在另一台只要直接敲入 blecat 就会输出 hello world。
传文件的话,则可利用 shell 重定向按如下方式操作:
blecat < myfile.txt # 发送端
blecat > myfile.txt # 接收端
感兴趣的朋友不妨一试。
Linux无法识别蓝牙适配器解决办法:http://www.linuxdiyf.com/linux/7524.html
Linux下轻量级蓝牙用法:http://www.linuxdiyf.com/linux/6739.html
Ubuntu桌面版使用蓝牙耳机教程:http://www.linuxdiyf.com/linux/5502.html
Ubuntu 10.10通过USB蓝牙上网:http://www.linuxdiyf.com/linux/454.html
Linux下的USB蓝牙适配器驱动:http://www.linuxdiyf.com/linux/11028.html