- I need to redirect output of "adb logcat"
- Also I need to filter this output. To show only text that contain text: com.myproject
So in Linux machine I use the next command in console:
adb logcat|grep com.myproject
And it's work fine. OK.
Now I need to do same on Windows 10 machine. Windows machine has no grep utility.
So, how I can do this in Windows?
P.S. Windows 10 machine is not my. I has no credentials to install anything.