readme: simplify grep + awk -> awk

This commit is contained in:
Håkon Løvdal 2018-11-20 00:50:48 +01:00
parent b34001d866
commit e7a5cfd45a
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@ Easy starting points are also reviewing [pull requests](https://github.com/nextc
#### With a computer:
- connect the device via USB
- open command prompt/terminal
- enter `adb logcat | grep "$(adb shell ps | grep com.nextcloud.client | awk '{print $2}')" > logcatOutput.txt` to save the output to this file
- enter `adb logcat | grep "$(adb shell ps | awk '/com.nextcloud.client/{print $2}')" > logcatOutput.txt` to save the output to this file
**Note:** You must have [adb](https://developer.android.com/studio/releases/platform-tools.html) installed first!