码迷,mamicode.com
首页 > 其他好文 > 详细

rename命令

时间:2018-05-15 17:22:54      阅读:135      评论:0      收藏:0      [点我收藏+]

标签:linux命令

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

参数:

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

实例1:

[root@www ~]# rename wget.txt wget.log wget.txt

[root@www ~]# ll wget.log

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

 实例2:

[root@www ~]# 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

[root@www ~]# rename .txt .log *

[root@www ~]# ll *.txt

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

[root@www ~]# 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命令

标签:linux命令

原文地址:http://blog.51cto.com/12107790/2116393

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!