标签:批量 ring 相关 修改 批量替换 string style pre span
批量修改文件名:
for i in *.html; do mv $i ${i/oldstring/newstring}; done;
批量替换文件内容:
sed -i "s/oldstring/newstring/g" *.html
bash 相关的一些小代码片断
原文地址:http://www.cnblogs.com/afxcn/p/6234862.html