adb: attribute and update formatting

This commit is contained in:
Rico Sta. Cruz 2018-03-07 16:15:41 +08:00
parent eedf02165e
commit 8fe7d1455c
No known key found for this signature in database
GPG Key ID: CAAD38AE2962619A
1 changed files with 9 additions and 2 deletions

11
adb.md
View File

@ -1,9 +1,11 @@
--- ---
title: adb title: adb (Android Debug Bridge)
category: CLI category: CLI
layout: 2017/sheet layout: 2017/sheet
weight: -1 weight: -1
updated: 2018-3-6 authors:
- github: ZackNeyland
updated: 2018-03-06
--- ---
### Device Basics ### Device Basics
@ -26,11 +28,15 @@ updated: 2018-3-6
`-s` can be used to send the commands to a specific device when multiple are connected. `-s` can be used to send the commands to a specific device when multiple are connected.
#### Examples #### Examples
``` ```
$ adb wait-for-device devices $ adb wait-for-device devices
List of devices attached List of devices attached
somedevice-1234 device somedevice-1234 device
someotherdevice-1234 device someotherdevice-1234 device
```
```
$ adb -s somedevice-1234 root $ adb -s somedevice-1234 root
``` ```
@ -59,6 +65,7 @@ $ adb logcat *:V > output.log
| `adb pull <remote> <local>` | Copies the remote from the device to local | | `adb pull <remote> <local>` | Copies the remote from the device to local |
#### Examples #### Examples
``` ```
$ echo "This is a test" > test.txt $ echo "This is a test" > test.txt
$ adb push test.txt /sdcard/test.txt $ adb push test.txt /sdcard/test.txt