How to do a recursive find/replace of a string with awk or sed?

后端 未结 30 2113
盖世英雄少女心
盖世英雄少女心 2020-11-22 06:39

How do I find and replace every occurrence of:

subdomainA.example.com

with

subdomainB.example.com

in eve

30条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-11-22 07:30

    If you wanted to use this without completely destroying your SVN repository, you can tell 'find' to ignore all hidden files by doing:

    find . \( ! -regex '.*/\..*' \) -type f -print0 | xargs -0 sed -i 's/subdomainA.example.com/subdomainB.example.com/g'
    

提交回复
热议问题