用shell批量修改类似的文件名
for i in `ls *.html`;do #rename "linux" "test" $file mv $i `echo $i | sed 's#test#linux#g'` done
本文题目:用shell批量修改类似的文件名
浏览路径:http://scyanting.com/article/pgdhjh.html
for i in `ls *.html`;do #rename "linux" "test" $file mv $i `echo $i | sed 's#test#linux#g'` done