Learning Sed Is Beneficial For Linux Users

One of the most important command line utility in Linux is sed
which 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).
Essentially what it can do is it allows you to search for String of text or specific pattern and then replace it pattern with whatever you tell sed to replace with, so it is really kind of search and replace function.
Basic sed substitution ’s'
So we are telling sed that go search for the word find
then replace it with the word replace
and what it does is it searches every lines for its first instance of the word find
. So it not gonna replace every instances of find
, only the first time it appears on each line from oldfile
and then writes it to newfile
.
Sometimes you want to replace every find
in oldfile
you just need to add global substitution g
for every instances find
.
But What if you just want to take a file, change it then write to that same file, you could use -i
flag.
It will replace all occurrences of a string in a file, overwriting the file (i.e. in-place):
You are not often doing this as far taking input from a file and then taking the output and write to new file. Probably most of the time, you take the output from other shell command and pipe it to sed
command. For example:
Other basic usage:
- To replace only on lines matching the line pattern:
- Delete lines matching the line pattern:
- Print the first 11 lines of a file:
- Apply multiple find-replace expressions to a file:
- Replace separator
/
by any other character not used in the find or replace patterns, e.g.#
:
What if I want to search for multiple pattern?
Sed is not picky about the symbol that you use for the separator in the command, if you dont want to use the /, you can use pretty much any others kind of special symbol that you can think of as long as it is not part of the search pattern.
You can also print specific line that match the search pattern ( kind of grep
)
The cool trick about sed
is to go and delete extra spaces at the end of the line, for example
It will search for every lines that has spaces at the end of it and replace it with nothing (basically deleting them). How about tabs?
empty lines?
First the ^
is the begining of the line then the $
symbol is the end of the line ( find every pattern that match the begining of the line, and the end of the line and there is nothing between it - so that means that line is empty ).
You can also replace all the lowercase characters with uppercase characters for fun 🙃
C’est tout, merci kn 🙃