linux下修改以某个字母开头的文件后戳

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux下修改以某个字母开头的文件后戳相关的知识,希望对你有一定的参考价值。

1、怎么在linux下修改以某一字母开头的文件后戳

源文件内容

[[email protected] test]# ls
stu10.txt.php  stu3.txt.php  stu6.txt.php  stu9.txt.php  test3.txt
stu1.txt.php   stu4.txt.php  stu7.txt.php  test1.txt     test4.txt
stu2.txt.php   stu5.txt.php  stu8.txt.php  test2.txt     test5.txt

现在我们将以s开头的所有文件的后戳修改为.html

第一步:先将以s开头的文件找出来

[[email protected] test]# find -type f -name "s*"
./stu8.txt.php
./stu7.txt.php
./stu6.txt.php
./stu9.txt.php
./stu3.txt.php
./stu4.txt.php
./stu2.txt.php
./stu5.txt.php
./stu1.txt.php
./stu10.txt.php


第二步:取文件的前半部分

[[email protected] test]# find -type f -name "s*"|awk -F"[./]+" ‘{print $2}‘
stu8
stu7
stu6
stu9
stu3
stu4
stu2
stu5
stu1
stu10

第三步:使用拼接的方法来实现文件后戳的修改

[[email protected] test]# find -type f -name "s*"|awk -F"[./]+" ‘{print "mv "$2".txt.php "$2".html"}‘
mv stu8.txt.php stu8.html
mv stu7.txt.php stu7.html
mv stu6.txt.php stu6.html
mv stu9.txt.php stu9.html
mv stu3.txt.php stu3.html
mv stu4.txt.php stu4.html
mv stu2.txt.php stu2.html
mv stu5.txt.php stu5.html
mv stu1.txt.php stu1.html
mv stu10.txt.php stu10.html

第四步:将拼接的内容交给bash来处理

[[email protected]lhost test]# find -type f -name "s*"|awk -F"[./]+" ‘{print "mv "$2".txt.php "$2".html"}‘|bash

第五步:查看修改后的内容

[[email protected] test]# ll
total 0
-rw-r--r--. 1 root root 0 Jul 22 11:47 stu10.html
-rw-r--r--. 1 root root 0 Jul 22 11:47 stu1.html
-rw-r--r--. 1 root root 0 Jul 22 11:47 stu2.html
-rw-r--r--. 1 root root 0 Jul 22 11:47 stu3.html
-rw-r--r--. 1 root root 0 Jul 22 11:47 stu4.html
-rw-r--r--. 1 root root 0 Jul 22 11:47 stu5.html
-rw-r--r--. 1 root root 0 Jul 22 11:47 stu6.html
-rw-r--r--. 1 root root 0 Jul 22 11:47 stu7.html
-rw-r--r--. 1 root root 0 Jul 22 11:47 stu8.html
-rw-r--r--. 1 root root 0 Jul 22 11:47 stu9.html
-rw-r--r--. 1 root root 0 Jul 22 11:41 test1.txt
-rw-r--r--. 1 root root 0 Jul 22 11:41 test2.txt
-rw-r--r--. 1 root root 0 Jul 22 11:41 test3.txt
-rw-r--r--. 1 root root 0 Jul 22 11:41 test4.txt
-rw-r--r--. 1 root root 0 Jul 22 11:41 test5.txt

可以看到已经将所有以s开头的文件名后戳全部修改为.html




2、以上修改文件后戳的方法还可以使用脚本来实现

脚本内容如下

#!/bin/bash
workDir=/server/file/test        将目录定义为一个变量
if [ -d $workDir ];then          判断目录是否存在,存在则进入,不存在则推出
  cd $workDir
else
  exit 1
fi
for i in $(find -type f -name "[s]*")    用for循环来查找以s开头的文件
do
  char=`echo $i|awk -F"[/.]+" ‘{print $2}‘`     定义要修改的文件前半部分
  mv $i ${char}.html                     将文件修改为想要的内容
done

本文出自 “每天一小步” 博客,请务必保留此出处http://fenyuer.blog.51cto.com/11265169/1950044

以上是关于linux下修改以某个字母开头的文件后戳的主要内容,如果未能解决你的问题,请参考以下文章

linux如何查找以某个字母打头的文件或文件夹 比如,/etc目录下很多文件,我想列出所有以c开头的文件或文件

正则表达式:数字开头中间字母结尾数字

database 如何查询某个字段以某个字母开头的数据

如何显示以某个字母开头和结尾的文件名?

把这铃声的后缀把“m4a”格式改成“m4r,后戳怎么修改?

Linux如何查找特定字符文件或目录