Skip to content

Instantly share code, notes, and snippets.

@voyager123bg
Created November 16, 2020 14:41
Show Gist options
  • Save voyager123bg/e46cdd50bf130022585154650988e678 to your computer and use it in GitHub Desktop.
Save voyager123bg/e46cdd50bf130022585154650988e678 to your computer and use it in GitHub Desktop.
recursively replace string in file structure with sed
# Replace all occurances of search with replace
egrep -lRZ 'search' .|xargs -0 -l sed -i -e 's/search/replace/'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment