sed批量替换内容 18 May 2021 更多 需求如下 将一个目录下所有php后缀的文件中内容将 aaa.cn替换成 bbb.cn find -type f -name "*.php" | xargs sed 's#aaa.cn#bbb.cn#g' -i