sed命令选项及作用

-n  不打印所有的行到标准输出

-e  表示将下一个字符串解析为sed编辑命令

-f  表示正在调用sed脚本文件

 sed编辑命令

p  打印匹配行

=  打印文件行号

a\  在定位行号之后追加文本信息

i\  在定位行号之前追加文本信息

d  删除定位行

c\  用新文本替换定位文本

r  从另外一个文件中读文本

w  将文本写入到一个文件

y  变换字符

q  第一个模式匹配玩成后退出

{}  在定位行执行的命令组

n  读取下一个输入行,用下一个命令处理新的行

 

接下来以下面的例子来练习sed命令

[root@git ~]# cat input
This is a Certificate Request file:

It should be mailed to zawu@seu.edu.cn

====================================================
Certificate Subject:

/O=Grid/OU=GlobusTest/OU=simpleCA-seugridl.seu.edu.cn/OU=seu.edu.cn/CN=globus
The above string is known as your user certificate subject,and it uniquely identifies this user.$88
To install this user certificate,please save this e-mail message into the following file.
/home/alloy/linuxshell/CH02/usercert.pem

<1>看一下-n的用途

[root@git ~]# sed -n '1p' input                         //加上-n选项只打印第一行
This is a Certificate Request file:
[root@git ~]# sed '1p' input                            //不加-n选项会输出第一行后再输出全文
This is a Certificate Request file:
This is a Certificate Request file:

It should be mailed to zawu@seu.edu.cn

====================================================
Certificate Subject:

/O=Grid/OU=GlobusTest/OU=simpleCA-seugridl.seu.edu.cn/OU=seu.edu.cn/CN=globus
The above string is known as your user certificate subject,and it uniquely identifies this user.$88
To install this user certificate,please save this e-mail message into the following file.
/home/alloy/linuxshell/CH02/usercert.pem

<2>我想打印出文件的3~6行

[root@git ~]# sed -n '3,6p' input
It should be mailed to zawu@seu.edu.cn

====================================================
Certificate Subject:

<3>打印匹配certificate关键字的行

[root@git ~]# sed -n '/certificate/p' input
The above string is known as your user certificate subject,and it uniquely identifies this user.$88
To install this user certificate,please save this e-mail message into the following file.

<4>打印匹配Certificate关键字的行号及内容(两种方法)

[root@git ~]# sed -n -e '/Certificate/=' -e '/Certificate/p' input
1
This is a Certificate Request file:
6
Certificate Subject:

[root@git ~]# sed -n '/Certificate/{=;p}' input
1
This is a Certificate Request file:
6
Certificate Subject:

<5>在与关键字"file:"相匹配的行后追加内容"We append a new line."

[root@git ~]# sed '/file:/a\We append a new line.' input
This is a Certificate Request file:
We append a new line.

It should be mailed to zawu@seu.edu.cn

====================================================
Certificate Subject:

/O=Grid/OU=GlobusTest/OU=simpleCA-seugridl.seu.edu.cn/OU=seu.edu.cn/CN=globus
The above string is known as your user certificate subject,and it uniquely identifies this user.$88
To install this user certificate,please save this e-mail message into the following file.
/home/alloy/linuxshell/CH02/usercert.pem

<6>匹配包含以bus结尾字符串的行

[root@git ~]# sed -n '/.*bus/p' input
/O=Grid/OU=GlobusTest/OU=simpleCA-seugridl.seu.edu.cn/OU=seu.edu.cn/CN=globus

<7>打印不在2~10之间的行

[root@git ~]# sed -n '2,10!p' input
This is a Certificate Request file:
To install this user certificate,please save this e-mail message into the following file.

/home/alloy/linuxshell/CH02/usercert.pem

<8>打印与seugrid的匹配行到最后一行的内容

[root@git ~]# sed -n '/seugrid/,$p' input
/O=Grid/OU=GlobusTest/OU=simpleCA-seugridl.seu.edu.cn/OU=seu.edu.cn/CN=globus

The above string is known as your user certificate subject,and it uniquely identifies this user.$88
To install this user certificate,please save this e-mail message into the following file.

/home/alloy/linuxshell/CH02/usercert.pem

<9>在匹配"file:"字符前插入"We insert a new line."

[root@git ~]# sed '/file:/i\We insert a new line.' input
We insert a new line.
This is a Certificate Request file:

It should be mailed to zawu@seu.edu.cn

====================================================
Certificate Subject:

/O=Grid/OU=GlobusTest/OU=simpleCA-seugridl.seu.edu.cn/OU=seu.edu.cn/CN=globus

The above string is known as your user certificate subject,and it uniquely identifies this user.$88
To install this user certificate,please save this e-mail message into the following file.

/home/alloy/linuxshell/CH02/usercert.pem

<10>把匹配"file:"的行修改为"We modify this line."

[root@git ~]# sed '/file:/c\We insert a new line.' input
We insert a new line.

It should be mailed to zawu@seu.edu.cn

====================================================
Certificate Subject:

/O=Grid/OU=GlobusTest/OU=simpleCA-seugridl.seu.edu.cn/OU=seu.edu.cn/CN=globus

The above string is known as your user certificate subject,and it uniquely identifies this user.$88
To install this user certificate,please save this e-mail message into the following file.

/home/alloy/linuxshell/CH02/usercert.pem

<11>删除文本的第一行和最后一行

[root@git ~]# sed -e '1d' -e '$d' input

It should be mailed to zawu@seu.edu.cn

====================================================
Certificate Subject:

/O=Grid/OU=GlobusTest/OU=simpleCA-seugridl.seu.edu.cn/OU=seu.edu.cn/CN=globus

The above string is known as your user certificate subject,and it uniquely identifies this user.$88
To install this user certificate,please save this e-mail message into the following file.

<12>把文本中Certificate替换成CERTIFICATE

[root@git ~]# sed -n 's/Certificate/CERTIFICATE/p' input
This is a CERTIFICATE Request file:
CERTIFICATE Subject:

<13>把文本中全部的seu替换为njue,如果只想匹配行第一个出现的seu不加g即可sed -n 's/seu/njue/p' input ,只想匹配全文第三次出现的怎么办sed -n 's/seu/njue/3p' input

[root@git ~]# sed -n 's/seu/njue/pg' input
It should be mailed to zawu@njue.edu.cn
/O=Grid/OU=GlobusTest/OU=simpleCA-njuegridl.njue.edu.cn/OU=njue.edu.cn/CN=globus

<14>将seu改为njue的结果写入output文件

[root@git ~]# sed -n 's/seu/njue/w output' input
[root@git ~]# cat output
It should be mailed to zawu@njue.edu.cn
/O=Grid/OU=GlobusTest/OU=simpleCA-njuegridl.seu.edu.cn/OU=seu.edu.cn/CN=globus

<15>在匹配“file:”行后读取output文件的内容

[root@git ~]# sed '/file:/r output' input
This is a Certificate Request file:
It should be mailed to zawu@njue.edu.cn
/O=Grid/OU=GlobusTest/OU=simpleCA-njuegridl.seu.edu.cn/OU=seu.edu.cn/CN=globus

It should be mailed to zawu@seu.edu.cn

====================================================
Certificate Subject:

/O=Grid/OU=GlobusTest/OU=simpleCA-seugridl.seu.edu.cn/OU=seu.edu.cn/CN=globus

The above string is known as your user certificate subject,and it uniquely identifies this user.$88
To install this user certificate,please save this e-mail message into the following file.

/home/alloy/linuxshell/CH02/usercert.pem

<16>将文件中f、m、j字符变为大写字母

[root@git ~]# sed 'y/ymj/YMJ/' input
This is a Certificate Request file:

It should be Mailed to zawu@seu.edu.cn

====================================================
Certificate SubJect:

/O=Grid/OU=GlobusTest/OU=siMpleCA-seugridl.seu.edu.cn/OU=seu.edu.cn/CN=globus

The above string is known as Your user certificate subJect,and it uniquelY identifies this user.$88
To install this user certificate,please save this e-Mail Message into the following file.

/hoMe/alloY/linuxshell/CH02/usercert.peM

<17>将文件中与Certificate匹配的行将全部的i替换为I,将第一个le替换为99

[root@git ~]# sed '/Certificate/{s/i/I/g;s/le/99/;}' input
ThIs Is a CertIfIcate Request fI99:

It should be mailed to zawu@seu.edu.cn

====================================================
CertIfIcate Subject:

/O=Grid/OU=GlobusTest/OU=simpleCA-seugridl.seu.edu.cn/OU=seu.edu.cn/CN=globus

The above string is known as your user certificate subject,and it uniquely identifies this user.$88
To install this user certificate,please save this e-mail message into the following file.

/home/alloy/linuxshell/CH02/usercert.pem

sed命令讲解的更多相关文章

  1. sed命令详解-应用篇

    本篇从实用的角度讲解sed,关于sed的详细帮助文档,请参考前篇 http://www.cnblogs.com/the-capricornus/p/5279979.html 本篇用到的选项请参考前篇. ...

  2. sed命令 linux

    sed 实用工具是一个"编辑器",但它与其它大多数编辑器不同.除了不面向屏幕之外,它还是非交互式的.这意味着您必须将要对数据执行的命令插入到命令行或要处 理的脚本中.当显示它时,请 ...

  3. sed命令使用详解

        内容来自马哥视频,感谢马哥精彩讲解 sed:编辑器 sed: Stream EDitor, 行编辑器,逐行进行处理 grep:实现文本过滤 awk:文本报告生成器 sed默认不编辑源文件,而是 ...

  4. 文本处理三剑客之sed命令

    第十八章.文本处理三剑客之sed命令 目录 sed介绍 sed命令常用选项 sed常用编辑命令 sed使用示例 sed高级语法 18.1.sed简介 sed全名stream editor,流编辑器,s ...

  5. linux shell 用sed命令在文本的行尾或行首添加字符

    转自 http://www.cnblogs.com/aaronwxb/archive/2011/08/19/2145364.html 昨天写一个脚本花了一天的2/3的时间,而且大部分时间都耗在了sed ...

  6. linux sed命令详解

    简介 sed 是一种在线编辑器,它一次处理一行内容.处理时,把当前处理的行存储在临时缓冲区中,称为“模式空间”(pattern space),接着用sed命令处理缓冲区中的内容,处理完成后,把缓冲区的 ...

  7. sed命令详解

    搜索 纠正错误  添加实例 sed 功能强大的流式文本编辑器 补充说明 sed 是一种流编辑器,它是文本处理中非常中的工具,能够完美的配合正则表达式使用,功能不同凡响.处理时,把当前处理的行存储在临时 ...

  8. Linux安全基础:sed命令的使用

    sed 是一个很好的文件处理工具,本身是一个管道命令,主要是以行为单位进行处理,可以将数据行进行替换.删除.新增.选取等特定工作. Sed本质上是一个编辑器,但是它是非交互式的,这点与VIM不同:同时 ...

  9. [转]sed命令详解

    转载:http://blog.chinaunix.net/u/22677/showart_1076318.html   1.简介 sed是非交互式的编辑器.它不会修改文件,除非使用shell重定向来保 ...

随机推荐

  1. 【SoftwareTesting】Homework1

    The errors I will mention after are from the project in the last semester. The project is a Java pro ...

  2. BluePrism初尝

    由于对工作的需求,现在开始接触了RPA. RPA是什么?第一次看见这个名词,我脑海里只有RPG的概念.一番查询,才知道是Robotic Process Automation的英文缩写,机器人流程自动化 ...

  3. MySQL免编译二进制包安装简记

    相比较于MySQL的源代码安装来说.免编译二进制包的速度实在是快了太多,而且性能损失也不是很大,同时具有一定的定制性.所以,如果没有特殊的 需求,尽量用MySQL免编译二进制包来安装MySQL. 1. ...

  4. 19.Scharr滤波器

    //Scharr void Test_Scharr() { Mat grad_x,grad_y; Mat abs_grad_x,abs_grad_y,dst; g_srcImage=imread(&q ...

  5. win10安装java

    java安装还比较顺利,贴两篇亲测可行的教程 1.开发环境安装:https://www.cnblogs.com/shirley-0021/p/8510051.html 2.开发工具安装(Eclipse ...

  6. input搜索框:根据历史记录自动填充后,去除默认黄色背景

    如果是纯色背景,直接通过box-shadow覆盖即可: input:-webkit-autofill { color: #333!important; -webkit-text-fill-color: ...

  7. python学习第五次笔记

    python学习第五次笔记 列表的缺点 1.列表可以存储大量的数据类型,但是如果数据量大的话,他的查询速度比较慢. 2.列表只能按照顺序存储,数据与数据之间关联性不强 数据类型划分 数据类型:可变数据 ...

  8. 西部数码虚拟空间配置ssl

    1.在阿里云申请ssl证书 2.解析到西部数码cname地址 3.西部数码---> 申请ssl部署 4.申请托管证书 5.部署https后设置301跳转将http跳转到https  参照: ht ...

  9. 2018—自学Selenium+Python 笔记(二)

    此文记录一些python语法不同之处.. 适合有研发基础的童鞋查阅.. 零基础的童鞋就怪怪一个个学吧! 记录也不一定全,随笔一记 多行语句 total=item1+\ item2+\ item3 &q ...

  10. redis命令Keys(九)

    常用命令 1>keys 返回满足给定pattern 的所有key redis 127.0.0.1:6379> keys mylist* 1) "mylist" 2) & ...