Created
April 28, 2022 02:33
-
-
Save lbbedendo/cf3c15e66e8d58030350c41272a48252 to your computer and use it in GitHub Desktop.
Search string recursively
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Pesquisa uma string recursivamente ignorando alguns diretórios comuns em projetos node, java, etc | |
grep -Hrn 'text_to_find' --exclude-dir 'node_modules' --exclude-dir 'build' --exclude-dir 'bin' --exclude-dir 'public' . |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment