用shell批量修改类似的文件名
for i in `ls *.html`;do #rename "linux" "test" $file mv $i `echo $i | sed 's#test#linux#g'` done
文章名称:用shell批量修改类似的文件名
URL网址:http://jxruijie.cn/article/pgdhjh.html

for i in `ls *.html`;do #rename "linux" "test" $file mv $i `echo $i | sed 's#test#linux#g'` done