Skip to content

Instantly share code, notes, and snippets.

@Beyarz
Last active September 11, 2024 17:11
Show Gist options
  • Save Beyarz/abfe03303d9aa65012fa6129397c61c0 to your computer and use it in GitHub Desktop.
Save Beyarz/abfe03303d9aa65012fa6129397c61c0 to your computer and use it in GitHub Desktop.
Notes

Grep notes

Find in current dir with recurs

grep "FIND" . -r

Find & replace in current dir (macOS)

grep -rl "FIND" ./ | xargs sed -i "" 's/FIND/REPLACE/g'

Search for keyword in a directory while ignoring node_modules

grep -rl 'KEYWORD' . --exclude-dir=node_modules

Search in the whole directory

grep -R 'KEYWORD' .

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment