最佳答案
在 Linux shell 中,下面的命令将递归地搜索并用‘ that’替换所有‘ this’的实例(我面前没有 Linux shell,但它应该有)。
find . -name "*.txt" -print | xargs sed -i 's/this/that/g'
在 OSX 上类似的命令是什么样子的?