Monday, September 14, 2015

recursive search and replace on unix

This stackoverflow gives
find ./myFolder -type f -print0 | xargs -0 sed -i 's/Application/whatever/g'
for doing recursive search and replace in the Unix shell.

Seemed to work pretty well.

No comments:

Post a Comment