10

How do I access files on another device/machine over Bluetooth from the command line?

Agnel Kurian
  • 57,975
  • 43
  • 146
  • 217

2 Answers2

13

There is Bluetooth Command Line Tools suite for Windows. This suite of tools contains a btftp utility that allows you to exchanges files with remote Bluetooth devices.

Brian Deragon
  • 2,929
  • 24
  • 44
  • 2
    Hard to understand why more people don't know about this. – Agnel Kurian Nov 22 '11 at 12:33
  • 1
    The Bluetooth Command Line Tools suite is very well made, but it is freeware and not opensource. Anyone can comment about its safety? A quick scan in Windows Defender finds no treat, though. – Jacopo Tedeschi Oct 09 '22 at 16:27
8

In the debian package, there is bluez-utils package. It contains several command line tools as:

  • hcitool: configure Bluetooth connections. e.g. $ hcitool dev will list the devices
  • hciconfig: configure Bluetooth devices. Once you found a device, you can configure it.

They may exist commands for sending, receive etc... from/to Bluetooth devices.

Jérôme
  • 2,640
  • 3
  • 26
  • 39