Mastering Text Manipulation with the Linux sed Command

📆 · ⏳ 3 min read · ·

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:

Terminal window
sed [options] 'command' input_file

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:

Terminal window
sed -n '/Linux/p' input_file

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:

Terminal window
sed 's/Linux/Unix/g' input_file > output_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”:

Terminal window
sed '/Linux/d' input_file > output_file

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”:

Terminal window
sed '/Linux/a\This is a new line' input_file > output_file

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”:

Terminal window
sed '/Linux/i\This is a new line' input_file > output_file

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:

Terminal window
sed '3s/Linux/Unix/' input_file > output_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”:

Terminal window
sed 's/Linux\|Unix/Operating System/g' input_file > output_file

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.

You may also like

  • HTTPS with self-signed certificates for your Homelab services

    In this article we will deep dive into understanding how we can setup HTTPS with self-signed certificates for our Homelab services.This is often required when you are running your own services and you want to access them over HTTPS.

  • Setup Shareable Drive with Samba in Linux

    In this article we will setup a shareable drive in Linux with SMB. We will learn how to setup the share directory using Samba on server and how to mount it on client.

  • Setup Shareable Drive with NFS in Linux

    In this article we will learn how to setup a shareable drive with NFS in Linux. We will see the steps to setup NFS server and mount the drive on a client machine.