Skip to content

Instantly share code, notes, and snippets.

@palashkulsh
Created March 6, 2018 10:22
Show Gist options
  • Save palashkulsh/6e82243afa1cd088ca6c319a038b061c to your computer and use it in GitHub Desktop.
Save palashkulsh/6e82243afa1cd088ca6c319a038b061c to your computer and use it in GitHub Desktop.
grep something in nodejs project without looking in node_modules folder
find . -iname "*.js" -not -path "./node_modules/*" -exec grep --color -H "merchant-model" {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment