千家信息网

如何编写Shell脚本批量添加扩展名

发表于:2024-10-21 作者:千家信息网编辑
千家信息网最后更新 2024年10月21日,本篇内容介绍了"如何编写Shell脚本批量添加扩展名"的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!方
千家信息网最后更新 2024年10月21日如何编写Shell脚本批量添加扩展名

本篇内容介绍了"如何编写Shell脚本批量添加扩展名"的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!

方法1:

代码如下:

for file in `ls`; do mv $file $file.txt; done

方法2:

代码如下:

find . -type f |xargs -i mv {} {}.txt

还有一些试验不成功的,先记录在此。

1.用rename命令修改后缀名,这个是最简单最省事的办法

代码如下:

[root@demo test_rename]# ll

总计 20

-rw-r-r- 1 root root 0 09-27 00:57 rename1.log

-rw-r-r- 1 root root 0 09-27 00:57 rename2.log

-rw-r-r- 1 root root 0 09-27 00:57 rename3.log

-rw-r-r- 1 root root 0 09-27 00:57 rename4.log

-rw-r-r- 1 root root 0 09-27 00:57 rename5.log

[root@demo test_rename]# rename log txt *.log #把*.log改为*.txt

[root@demo test_rename]# ll

总计 20

-rw-r-r- 1 root root 0 09-27 00:57 rename1.txt

-rw-r-r- 1 root root 0 09-27 00:57 rename2.txt

-rw-r-r- 1 root root 0 09-27 00:57 rename3.txt

-rw-r-r- 1 root root 0 09-27 00:57 rename4.txt

-rw-r-r- 1 root root 0 09-27 00:57 rename5.txt

[root@demo test_rename]#

2.用for、sed和mv修改后缀名

代码如下:

[root@demo test_rename]# ll

总计 20

-rw-r-r- 1 root root 0 09-27 01:51 rename1.log

-rw-r-r- 1 root root 0 09-27 01:21 rename2.log

-rw-r-r- 1 root root 0 09-27 01:21 rename3.log

-rw-r-r- 1 root root 0 09-27 01:21 rename4.log

-rw-r-r- 1 root root 0 09-27 01:21 rename5.log

[root@demo test_rename]# for i in $(ls .)

> do

> mv $i $(echo $i|sed 's/\.log/\.txt/')

> done

[root@demo test_rename]# ll

总计 20

-rw-r-r- 1 root root 0 09-27 01:51 rename1.txt

-rw-r-r- 1 root root 0 09-27 01:21 rename2.txt

-rw-r-r- 1 root root 0 09-27 01:21 rename3.txt

-rw-r-r- 1 root root 0 09-27 01:21 rename4.txt

-rw-r-r- 1 root root 0 09-27 01:21 rename5.txt

[root@demo test_rename]#

3.用find和xargs添加后缀名

代码如下:

[root@demo test_rename]# ll

总计 20

-rw-r-r- 1 root root 0 09-27 02:20 rename1

-rw-r-r- 1 root root 0 09-27 02:20 rename2

-rw-r-r- 1 root root 0 09-27 02:20 rename3

-rw-r-r- 1 root root 0 09-27 02:20 rename4

-rw-r-r- 1 root root 0 09-27 02:20 rename5

[root@demo test_rename]# find . -type f |xargs -i mv {} {}.txt

[root@demo test_rename]# ll

总计 20

-rw-r-r- 1 root root 0 09-27 02:20 rename1.txt

-rw-r-r- 1 root root 0 09-27 02:20 rename2.txt

-rw-r-r- 1 root root 0 09-27 02:20 rename3.txt

-rw-r-r- 1 root root 0 09-27 02:20 rename4.txt

-rw-r-r- 1 root root 0 09-27 02:20 rename5.txt

[root@demo test_rename]#

"如何编写Shell脚本批量添加扩展名"的内容就介绍到这里了,感谢大家的阅读。如果想了解更多行业相关的知识可以关注网站,小编将为大家输出更多高质量的实用文章!

0