# sed功能介绍
先看下官方的介绍
Sed is a stream editor. A stream editor is used to perform basic text transformations on an input stream (a file or input from a pipeline).
While in some ways similar to an editor which permits scripted edits (such as ed), sed works by making only one pass over the input(s), and
is consequently more efficient. But it is sed’s ability to filter text in a pipeline which particularly distinguishes it from other types of
editors.
大概的意思,是面向流的文本编辑工具。一般用来对文件中的文本进行替换等操作。
以下备注一些常用的操作方式了。
# 使用介绍
我们以上段文字为例,使用sed
进行文本的操作。
|
|
基本上常用的一些 sed
替换方式就是这些了。man
文档中还有一些基于倍数的替换范围决定方式,这里就不说明了。使用的时候,还是尽量使用通俗易懂的方式。