Shell 脚本正则表达式(二)

简介: sed 是一种流编辑器,能够通过非交互式的方式来完成对文件的增删改查。

Shell 脚本应用(二)



一、sed 工具概述


    1.工作流程


      1)常见选项

      2)常见操作


    2.sed 用法示例


      1)输入符合条件的文本

      2)删除符合条件的文本

      3)替换符合条件的文本

      4)迁移符合条件的文本

      5)使用脚本编辑文件


一、sed 工具概述



sed 是一种流编辑器,能够通过非交互式的方式来完成对文件的增删改查。


  • sed 的执行过程:sed 编辑器逐行处理文件(或输入),并将结果发送到屏幕。


具体执行过程:


  • 首先 sed 会把当前正在处理的行保存到一个临时缓存区中(也称为模式空间)。
  • 然后处理临时缓冲区的行,完成后把该行发送到屏幕上。
  • sed 每处理完一行就将其从临时缓冲区删除,接着将下一行读入,进行处理和显示。
  • 最后当 sed 处理完输入文件的最后一行,便会结束运行。


1.工作流程


  • 读取—执行—显示


常见用法


sed  [选项]  '操作'  参数


1)常见选项


  • -e:用来匹配多个操作符。
  • -f 文件 或 --file=文件名:直接将 sed 的操作写在一个文件内,-f 文件则可以运行文件内的 sed 操作。
  • -n:sed 默认情况下输出全部内容,-n 是只输出匹配到的内容。
  • -i:此选项会直接修改原文件,建议修改前先备份原文件。
  • -i.bak:修改原文件的同时创建 .bak 的备份。


2)常见操作


  • a: 增加行,在当前行下面插入内容。
  • i: 增加行,在当前行上面插入内容。
  • c: 将指定行中的所有内容,替换成该选项后面的字符串。
  • d: 删除,删除选择的行。
  • s: 替换,替换指定字符串。
  • p: 打印,输出指定行。
  • g: 表示行内全面替换。
  • w:表示把行写入一个文件。
  • G:追加到当前模板块文本的后面。
  • =:打印当前行号码。


2.sed 用法示例


创建测试文件


[root@CentOS-3 ~]# vim test.txt
he was short and fat.
He was wearing a blue polo shirt with black pants.
The home of Football on BBC Sport online.
the tongue is boneless but it breaks bones.12!
google is the best tools for search keyword.
The year ahead will test our political establishment to the li
PI=3.141592653589793238462643383249901429
a wood cross!
Actions speak louder than words
#woood #
#woooooood #
AxyzxyzxyzxyzC
I bet this place is really spooky late at night!
Misfortunes never come alone/single.
I shouldn't have lett so tast.


1)输入符合条件的文本

输出所有内容,等同于 cat test.txt


[root@CentOS-3 ~]# sed -n 'p' test.txt


image.png


输出第 3 行


[root@CentOS-3 ~]# sed -n '3p' test.txt


image.png


输出第 3-5 行


[root@CentOS-3 ~]# sed -n '3,5p' test.txt


image.png


输出第 3 行,第 5 行,第 8 行


[root@CentOS-3 ~]# sed -n -e 3p -e 5p -e 8p test.txt


image.png


输出所有奇数行( n:表示读入下一行)


[root@CentOS-3 ~]# sed -n 'p;n' test.txt


image.png


输出所有偶数行


[root@CentOS-3 ~]# sed -n 'n;p' test.txt


image.png


输出 1-5 奇数行


[root@CentOS-3 ~]# sed -n '1,5{p;n}' test.txt


image.png


输出第 10 行至文件尾的偶数行(其实输出的是 10,11,13,15 … 等行)


[root@CentOS-3 ~]# sed -n '10,${n;p}' test.txt


image.png


输出包含 the 的行


[root@CentOS-3 ~]# sed -n '/the/p' test.txt


image.png


输出第 4 行至第 1 个包含 the 的行


[root@CentOS-3 ~]# sed -n '4,/the/p' test.txt


image.png


输出包含 the 的所在行的行号( =:用来输出行号)


[root@CentOS-3 ~]# sed -n '/the/=' test.txt


image.png


输出以 PI 开头的行


[root@CentOS-3 ~]# sed -n '/^PI/p' test.txt


image.png


输出以数字结尾的行


[root@CentOS-3 ~]# sed -n '/[0-9]$/p' test.txt


image.png


输出包含单词 wood 的行( \< ,\>:表示单词边界)


[root@CentOS-3 ~]# sed -n '/\<wood\>/p' test.txt 


image.png


2)删除符合条件的文本


  • nl:计算文件的行数。


删除第 3 行


[root@CentOS-3 ~]# nl test.txt | sed '3d'


image.png


删除 3-5 行


[root@CentOS-3 ~]# nl test.txt | sed '3,5d'


image.png


删除包含 cross 的行


[root@CentOS-3 ~]# nl test.txt | sed '/cross/d'


image.png


删除不包含 cross 的行


[root@CentOS-3 ~]# nl test.txt | sed '/cross/!d'


image.png


删除开头为小写字母的行


[root@CentOS-3 ~]# sed '/^[a-z]/d' test.txt


image.png


删除以 . 结尾的行


[root@CentOS-3 ~]# sed '/\.$/d' test.txt


image.png


删除空行


[root@CentOS-3 ~]# sed '/^$/d' test.txt


image.png


删除重复的空行


[root@CentOS-3 ~]# cat <<END > 1.txt 
1
2
3
4
5
END
[root@CentOS-3 ~]# sed -e '/^$/{n;/^$/d}' 1.txt
等同于
[root@CentOS-3 ~]# cat -s 1.txt


image.png


3)替换符合条件的文本


将每行中的第 1 个 the 替换为 THE


[root@CentOS-3 ~]# sed 's/the/THE/' test.txt


image.png


将每行中的第 2 个 l 替换为 L


[root@CentOS-3 ~]# sed 's/l/L/2' test.txt


image.png


将文件中所有的 the 替换为 THE


[root@CentOS-3 ~]# sed 's/the/THE/g' test.txt


image.png


将文件中所有的 o 删除(替换为空串)


[root@CentOS-3 ~]# sed 's/o//g' test.txt


image.png


每行开始添加 # 字符


[root@CentOS-3 ~]# sed 's/^/#/' test.txt


image.png


在包含 the 的每行行首添加#字符


[root@CentOS-3 ~]# sed '/the/s/^/#/' test.txt


image.png


在每行末尾添加 EOF 字符


[root@CentOS-3 ~]# sed 's/$/EOF/' test.txt


image.png


将 3-5 行所有的 the 替换为 THE


[root@CentOS-3 ~]# sed '3,5s/the/THE/g' test.txt


image.png


将包含 the 的行中的 o 替换为 O


[root@CentOS-3 ~]# sed '/the/s/o/O/g' test.txt


image.png


将第二行到最后一行中所有数据替换为指定数据


[root@localhost ~]# sed '2,$c\Hello World' test.txt


image.png


将指定行中数据替换


[root@localhost ~]# sed '/A/c\Hello World' 1.txt


image.png

image.png


4)迁移符合条件的文本


  • H:复制到剪贴板;
  • g,G:将剪贴板中的数据覆盖\追加到指定行;
  • w:保存为文件;
  • r:读取指定文件;
  • a:追加指定内容;


将包含 the 的行迁移到行尾(;用于多个操作)


  • H 复制到剪贴板 — d 删除 —$G 追加到行尾


[root@CentOS-3 ~]# sed '/the/{H;d};$G' test.txt


image.png


将 1-5 行迁移到 17 行后


[root@CentOS-3 ~]# sed '1,5{H;d};17G' test.txt


image.png


将包含 the 的行另存为新文件


[root@CentOS-3 ~]# sed '/the/w out.file' test.txt
[root@CentOS-3 ~]# ls
anaconda-ks.cfg  out.file  test.txt
[root@CentOS-3 ~]# cat out.file


image.png


在包含 the 每行后添加文件 hostname 内容


[root@CentOS-3 ~]# sed '/the/r /etc/hostname' test.txt


image.png


在第 3 行后插入新行,内容为 New


[root@CentOS-3 ~]# sed '3aNew' test.txt


image.png


在包含 the 的每行后插入新行


[root@CentOS-3 ~]# sed '/the/aNew' test.txt


image.png


在第 3 行后插入多行(\n 换行符)


[root@CentOS-3 ~]# sed '3aNew1\nNew2' test.txt


image.png


5)使用脚本编辑文件


  • 使用 sed 脚本,将多个编辑指令存放到文件中(每行一条编辑指令),通过 -f 调用

将1-5 行迁移到 17 行后


可以使用下列脚本实现
[root@CentOS-3 ~]# vim opt.list
1,5H
1,5d
17G
[root@CentOS-3 ~]# sed -f opt.list test.txt


image.png

相关文章
|
1月前
|
Shell
一个用于添加/删除定时任务的shell脚本
一个用于添加/删除定时任务的shell脚本
84 1
|
24天前
|
Shell Linux 测试技术
6种方法打造出色的Shell脚本
6种方法打造出色的Shell脚本
48 2
6种方法打造出色的Shell脚本
|
10天前
|
XML JSON 监控
Shell脚本要点和难点以及具体应用和优缺点介绍
Shell脚本在系统管理和自动化任务中扮演着重要角色。尽管存在调试困难、可读性差等问题,但其简洁高效、易于学习和强大的功能使其在许多场景中不可或缺。通过掌握Shell脚本的基本语法、常用命令和函数,并了解其优缺点,开发者可以编写出高效的脚本来完成各种任务,提高工作效率。希望本文能为您在Shell脚本编写和应用中提供有价值的参考和指导。
31 1
|
15天前
|
Ubuntu Shell 开发工具
ubuntu/debian shell 脚本自动配置 gitea git 仓库
这是一个自动配置 Gitea Git 仓库的 Shell 脚本,支持 Ubuntu 20+ 和 Debian 12+ 系统。脚本会创建必要的目录、下载并安装 Gitea,创建 Gitea 用户和服务,确保 Gitea 在系统启动时自动运行。用户可以选择从官方或小绿叶技术博客下载安装包。
37 2
|
29天前
|
监控 网络协议 Shell
ip和ip网段攻击拦截系统-绿叶结界防火墙系统shell脚本
这是一个名为“小绿叶技术博客扫段攻击拦截系统”的Bash脚本,用于监控和拦截TCP攻击。通过抓取网络数据包监控可疑IP,并利用iptables和firewalld防火墙规则对这些IP进行拦截。同时,该系统能够查询数据库中的白名单,确保合法IP不受影响。此外,它还具备日志记录功能,以便于后续分析和审计。
48 6
|
25天前
|
运维 监控 Shell
深入理解Linux系统下的Shell脚本编程
【10月更文挑战第24天】本文将深入浅出地介绍Linux系统中Shell脚本的基础知识和实用技巧,帮助读者从零开始学习编写Shell脚本。通过本文的学习,你将能够掌握Shell脚本的基本语法、变量使用、流程控制以及函数定义等核心概念,并学会如何将这些知识应用于实际问题解决中。文章还将展示几个实用的Shell脚本例子,以加深对知识点的理解和应用。无论你是运维人员还是软件开发者,这篇文章都将为你提供强大的Linux自动化工具。
|
1月前
|
监控 Unix Shell
shell脚本编程学习
【10月更文挑战第1天】shell脚本编程
69 12
|
1月前
|
存储 运维 监控
自动化运维:使用Shell脚本简化日常任务
【9月更文挑战第35天】在IT运维的日常工作中,重复性的任务往往消耗大量的时间。本文将介绍如何通过编写简单的Shell脚本来自动化这些日常任务,从而提升效率。我们将一起探索Shell脚本的基础语法,并通过实际案例展示如何应用这些知识来创建有用的自动化工具。无论你是新手还是有一定经验的运维人员,这篇文章都会为你提供新的视角和技巧,让你的工作更加轻松。
59 2
|
2月前
|
Shell
shell脚本变量 $name ${name}啥区别
shell脚本变量 $name ${name}啥区别
|
2月前
|
人工智能 监控 Shell
常用的 55 个 Linux Shell 脚本(包括基础案例、文件操作、实用工具、图形化、sed、gawk)
这篇文章提供了55个常用的Linux Shell脚本实例,涵盖基础案例、文件操作、实用工具、图形化界面及sed、gawk的使用。
539 2