用来修改文件名、重命名文件,批量重命名文件rename是最好的选择。

用法:rename from to files...

[root@Director test]# ls
a_01 a_02
[root@Director test]# rename a b a_*
[root@Director test]# ls
b_01 b_02
05-08 14:48