1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-28 23:44:54 +02:00
tldr/pages/linux/bluetoothctl.md
2019-11-19 17:31:22 +05:30

27 lines
422 B
Markdown

# bluetoothctl
> Handling bluetooth devices from the shell.
- Enter the bluetoothctl shell:
`bluetoothctl`
- List devices:
`bluetoothctl -- devices`
- Pair a device:
`bluetoothctl -- pair {{mac_address}}`
- Remove a device:
`bluetoothctl -- remove {{mac_address}}`
- Connect a paired device:
`bluetoothctl -- connect {{mac_address}}`
- Disconnect a paired device:
`bluetoothctl -- disconnect {{mac_address}}`