Guest User

Untitled

a guest
Jan 21st, 2019
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. ### Find and replace substring recursively in files with given extention
  2. Replace `txt` with your extention
  3. ```console
  4. find . -name "*.txt" -type f -print0 | xargs -0 -n 50 perl -pi -e 's/Hello/Greetings/g'
  5. ```
Add Comment
Please, Sign In to add comment