1. 程式人生 > >shell批量修改文件名

shell批量修改文件名

批量修改文件名 localhost shell 命令 man don oca 詳解 lock

[root@localhost file1]# ls
a.htm  b.htm  c.htm  d.htm  pl.sh
[root@localhost file1]# vi pl.sh 
#!/bin/bash
for f in `ls *.htm`
do
        mv $f `echo ${f/htm/html}`
done
[root@localhost file1]# sh pl.sh 
[root@localhost file1]# ls
a.html  b.html  c.html  d.html  pl.sh
[root@localhost file1]# 

當前可以使用rename命令進行修改

rename命令詳解

shell批量修改文件名