blecat: 蓝牙传输小工具

blecat 是利用蓝牙协议编写的命令行小工具,它支持管道操作,也能用来传输文件。

通过一行 npm install -g blecat 命令即可安装 blecat

比如,在开启蓝牙的两台电脑上,若在其中一台执行:

echo hello world | blecat

那么在另一台只要直接敲入 blecat 就会输出 hello world

传文件的话,则可利用 shell 重定向按如下方式操作:

blecat < myfile.txt # 发送端
blecat > myfile.txt # 接收端

感兴趣的朋友不妨一试。

Read More: