find grep perl配合查找替换内容

有时候需要对一个目录或者一批文件进行内容的替换。
可以用find配合sed或者perl来完成
查找当前目录下,把

  1. </title>

替换成

  1. </title><meta http-equiv="Content-Type" content="text//html; charset=utf-8" />
  1. find ./ -type f -exec sed -i "s/<//title>/<//title><meta http-equiv=/"Content-Type/" content=/"text//html; charset=utf-8/" //>/g" {} /;

上边是在linux,好像centos也可以,但是FreeBSD上不行,懒得查语法了。搞了个find+perl的版本
把abc换成def

  1. find ./ -type f | xargs perl -pi -e "s/abc/def/g"

FreeBSD不行,可能是shell不对。切换到bash,没报错了

你可能感兴趣的:(linux,shell,centos,perl,bash,FreeBSD)