shell批量修改文件名
Posted kyeup
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了shell批量修改文件名相关的知识,希望对你有一定的参考价值。
[[email protected] file1]# ls
a.htm b.htm c.htm d.htm pl.sh
[[email protected] file1]# vi pl.sh
#!/bin/bash
for f in `ls *.htm`
do
mv $f `echo ${f/htm/html}`
done
[[email protected] file1]# sh pl.sh
[[email protected] file1]# ls
a.html b.html c.html d.html pl.sh
[[email protected] file1]#
当前可以使用rename命令进行修改
以上是关于shell批量修改文件名的主要内容,如果未能解决你的问题,请参考以下文章