您现在的位置是:网站首页> 编程资料编程资料
Shell脚本批量添加扩展名的两种方法分享_linux shell_
2023-05-26
334人已围观
简介 Shell脚本批量添加扩展名的两种方法分享_linux 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脚本实现的单机流量统计功能_linux shell_
- Shell脚本模拟多线程功能分享_linux shell_
- Shell去除空行的4种方法_linux shell_
- Shell函数的7种用法介绍_linux shell_
- Shell脚本实现随机数多种方法介绍(date、random、uuid)_linux shell_
- Shell脚本中不同进制数据转换的例子(二进制、八进制、十六进制、base64)_linux shell_
- Shell脚本对文件中的行、单词、字符进行迭代输出示例_linux shell_
- Shell脚本制作的终端会话回放功能脚本分享_linux shell_
- Shell中的函数、函数定义、作用域问题介绍_linux shell_
- Linux下交互式与非交互式修改用户密码的例子_linux shell_
