Skip to content

Instantly share code, notes, and snippets.

@mdeguzis
Created February 11, 2016 01:01
Show Gist options
  • Save mdeguzis/cc44646a4368723d6f45 to your computer and use it in GitHub Desktop.
Save mdeguzis/cc44646a4368723d6f45 to your computer and use it in GitHub Desktop.
Pipe/send results of find to sed
find . -name "SEARCHSTRING" -print0 | xargs -0 sed "s|BEFORE|AFTER|g"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment