-1
  1. I need to redirect output of "adb logcat"
  2. 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.

lmdic
  • 79
  • 2
  • 10

1 Answers1

1

You can install and use Cygwin, it gives you many Unix tools like grep

RuNo280
  • 573
  • 4
  • 27