shell补-特殊玩法-批量修改文件

发布时间 2023-12-15 11:00:30作者: WeChat2834
shell补-特殊玩法-批量修改文件

几个其他方法;感觉最简单的就是rename

###方法3 rename
#rename   找谁,  替换为什么   范围
[root@localhost random]# ll
总用量 0
-rw-r--r--. 1 root root 0 11月 17 16:03 bcauiftqdr.mrxu.html
-rw-r--r--. 1 root root 0 11月 17 16:03 dkjoypze.mrxu.html
-rw-r--r--. 1 root root 0 11月 17 16:03 hsakwmnq.mrxu.html
-rw-r--r--. 1 root root 0 11月 17 16:03 jdqallkr.mrxu.html
-rw-r--r--. 1 root root 0 11月 17 16:03 kinuuxly.mrxu.html
-rw-r--r--. 1 root root 0 11月 17 16:03 ngfyspgz.mrxu.html
-rw-r--r--. 1 root root 0 11月 17 16:03 nrwzlusv.mrxu.html
-rw-r--r--. 1 root root 0 11月 17 16:03 xcfftnkj.mrxu.html
-rw-r--r--. 1 root root 0 11月 17 16:03 yonmzjuj.mrxu.html
-rw-r--r--. 1 root root 0 11月 17 16:03 yzecriet.mrxu.html
[root@localhost random]# rename mrxu.html  mrxu.bak.HTML ./*
[root@localhost random]# ll
总用量 0
-rw-r--r--. 1 root root 0 11月 17 16:03 bcauiftqdr.mrxu.bak.HTML
-rw-r--r--. 1 root root 0 11月 17 16:03 dkjoypze.mrxu.bak.HTML
-rw-r--r--. 1 root root 0 11月 17 16:03 hsakwmnq.mrxu.bak.HTML
-rw-r--r--. 1 root root 0 11月 17 16:03 jdqallkr.mrxu.bak.HTML
-rw-r--r--. 1 root root 0 11月 17 16:03 kinuuxly.mrxu.bak.HTML
-rw-r--r--. 1 root root 0 11月 17 16:03 ngfyspgz.mrxu.bak.HTML
-rw-r--r--. 1 root root 0 11月 17 16:03 nrwzlusv.mrxu.bak.HTML
-rw-r--r--. 1 root root 0 11月 17 16:03 xcfftnkj.mrxu.bak.HTML
-rw-r--r--. 1 root root 0 11月 17 16:03 yonmzjuj.mrxu.bak.HTML
-rw-r--r--. 1 root root 0 11月 17 16:03 yzecriet.mrxu.bak.HTML
[root@localhost random]#