views:

894

answers:

1

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

+2  A: 

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