假设我想浏览此目录中的每个文件(也是递归)。
我想用happy.magic
sad.apps.magic
我该怎么做?
答案 0 :(得分:5)
find . -type f -exec sed -i 's,happy.magic,sad.apps.magic,g' {} \;
答案 1 :(得分:0)
Eric是对的,但要明确:
find ./ -type f -exec sed -i "s/happy\.magic/sad\.apps\.magic/g" {} \;