Introduction
The sed
command is a stream editor that allows you to perform text manipulation operations on input streams. It is a command-line utility that is available on most Unix-like systems, including Linux.
sed
is particularly useful for automating text editing tasks, such as replacing or deleting text, and for transforming text in complex ways.
Overview of the sed command
The sed command works by reading an input stream, applying a set of commands to each line of the input, and then outputting the modified text. The basic syntax of the sed command is as follows:
The options are used to modify the behavior of the sed command, while the command specifies the text manipulation operations to be performed. The input_file
parameter specifies the name of the file to be processed.
Text manipulation operations
The sed command supports a wide range of text manipulation operations. Here are some examples of sed commands:
Searching for patterns
The following command searches for lines that contain the word “Linux” and prints them to the console:
The -n
option suppresses the default output, while the /Linux/p
command searches for lines that contain the word “Linux” and prints them to the console.
Replacing text
The following command replaces all occurrences of the word “Linux” with the word “Unix” and writes the output to a new file:
The s
command stands for “substitute” and the g
option stands for “global”, which means that all occurrences of the pattern should be replaced.
Deleting text
The following command deletes all lines that contain the word “Linux”:
The d
command stands for “delete” and the /Linux/
pattern searches for lines that contain the word “Linux”.
Adding text
The following command adds a line of text after every line that contains the word “Linux”:
The a
command stands for “append” and the backslash is used to escape the newline character.
Inserting text
The following command inserts a line of text before every line that contains the word “Linux”:
The i
command stands for “insert” and the backslash is used to escape the newline character.
Modifying specific lines
The following command replaces the first occurrence of the word “Linux” with the word “Unix” on the third line of the input file:
The 3s
command specifies that the operation should be performed on the third line of the input file.
Using regular expressions
The following command replaces all occurrences of the word “Linux” or “Unix” with the word “Operating System”:
The |
character is used to specify multiple patterns, and the g
option stands for “global”, which means that all occurrences of the pattern should be replaced.
Conclusion
The sed command is a powerful tool for text manipulation on Linux systems. With sed, you can automate repetitive text editing tasks and transform text in complex ways.
By mastering the sed command, you can save time and effort when working with large amounts of text.