From a002465004edca7720e7bc7571d9716c2f8f3538 Mon Sep 17 00:00:00 2001 From: Matthias Langhard Date: Tue, 19 Nov 2019 13:01:22 +0100 Subject: [PATCH] bluetoothctl: add page (#3590) --- pages/linux/bluetoothctl.md | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 pages/linux/bluetoothctl.md diff --git a/pages/linux/bluetoothctl.md b/pages/linux/bluetoothctl.md new file mode 100644 index 000000000..162fd5cc0 --- /dev/null +++ b/pages/linux/bluetoothctl.md @@ -0,0 +1,27 @@ +# 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}}`