Skip to content

Instantly share code, notes, and snippets.

@sfdcale
Created November 10, 2022 05:42
Show Gist options
  • Select an option

  • Save sfdcale/c1676a13c941f33bac1e2c78dac3abf7 to your computer and use it in GitHub Desktop.

Select an option

Save sfdcale/c1676a13c941f33bac1e2c78dac3abf7 to your computer and use it in GitHub Desktop.
Find + Grep + Sed
# Find for files matching specific pattern
# Check if specific text is there in that file
# Replace that specific text with other text.
find . -type f -not -iregex '.*node_modules.*' -exec grep -EHni 'abc' {} \; -exec sed -i '' -e 's/abc/xyz/g' {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment