rename命令

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了rename命令相关的知识,希望对你有一定的参考价值。

rename:Rename files 用字符串替换的方式批量改变文件名

参数:

            源字符串   目标字符串   文件列表

实例1:

[[email protected] ~]# rename wget.txt wget.log wget.txt

[[email protected] ~]# ll wget.log

-rw-r--r-- 1 root root 80553 4月  14 03:32 wget.log

 实例2:

[[email protected] ~]# ll *.txt

-rw-r--r--  1 root root 94077 4月  14 03:53 passwd.txt

-rw-r--r--  1 root root 65289 4月  14 05:43 tcpdump.txt

-rw-r--r--. 1 root root   427 11月 26 06:24 users.txt

[[email protected] ~]# rename .txt .log *

[[email protected] ~]# ll *.txt

ls: 无法访问*.txt: 没有那个文件或目录

[[email protected] ~]# ll *.log

-rw-r--r--  1 root root  94077 4月  14 03:53 passwd.log

-rw-r--r--  1 root root  65289 4月  14 05:43 tcpdump.log

-rw-r--r--. 1 root root    427 11月 26 06:24 users.log

-rw-r--r--  1 root root  80553 4月  14 03:32 wget.log


以上是关于rename命令的主要内容,如果未能解决你的问题,请参考以下文章

rename命令

linux中如何用rename命令重命名一个文件

rename命令

原 Linux下的rename命令

rename命令

重命名文件或文件夹(mv命令与rename命令)