Guest User

Untitled

a guest
Oct 22nd, 2016
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.10 KB | None | 0 0
  1. # Recursively find and replace in files
  2. find . -name "*.txt" -print0 | xargs -0 sed -i '' -e 's/foo/bar/g'
Add Comment
Please, Sign In to add comment