vim 中处理单个文件
:%s/hello/hi/g 将当前文件中的所有hello替换为hi
sed 可处理一个目录下指导文件的文本
sed -i "s/hello/hi/g" *.xml 将当前目录下所有xml文件中的hello替换为hi