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命令进行修改

rename命令详解

以上是关于shell批量修改文件名的主要内容,如果未能解决你的问题,请参考以下文章

shell脚本:批量修改文件名(文件名中添加字符)

shell练习题

Shell脚本实战之文件批量创建和修改

shell 批量修改文件名中的部分

shell批量修改文件名

用shell脚本实现批量创建用户并修改密码