From e7a5cfd45a317fb05af4f57a069ca593dbaa4f90 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=A5kon=20L=C3=B8vdal?= Date: Tue, 20 Nov 2018 00:50:48 +0100 Subject: [PATCH] readme: simplify grep + awk -> awk --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1bf42e2ee6..56db64c4f3 100644 --- a/README.md +++ b/README.md @@ -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!