In the linux shell, the following command will recursively search and replace all instances of \'this\' with \'that\' (I don\'t have a Linux shell in front of me, but it sho
On Mac OSX 10.11.5 this works fine:
grep -rli 'old-word' * | xargs -I@ sed -i '' 's/old-word/new-word/g' @