Windows recursive grep command-line

前端 未结 8 762
栀梦
栀梦 2020-12-12 08:44

I need to do a recursive grep in Windows, something like this in Unix/Linux:

grep -i \'string\' `find . -print`

or the more-preferred metho

相关标签:
8条回答
  • 2020-12-12 09:09

    If you have Perl installed, you could use ack, available at http://beyondgrep.com/.

    0 讨论(0)
  • 2020-12-12 09:11

    Recursive search for import word inside src folder:

    > findstr /s import .\src\*
    
    0 讨论(0)
提交回复
热议问题