About 1,690,000 results
Open links in new tab
  1. How to Use the sed Command on Linux - How-To Geek

    Sep 3, 2023 · For some peace of mind, sed can create a backup of the original file before it executes its command. You can use the In-place option (-i) to tell sed to write the changes to …

  2. The “sed” Command in Linux [with Practical Examples]

    May 6, 2024 · The sed command is used to edit lines from the File parameter specified in the edit script and write them to the standard output. It allows you to select the lines that you want to …

  3. Sed Command in Linux with 15 Practical Examples - TecAdmin

    Apr 26, 2025 · The `sed` command is an essential tool for manipulating text in Linux. It allows you to search for patterns in a text and perform various operations on the matching text, such as …

  4. Beginners Guide for Sed Command on Linux

    May 22, 2025 · The sed command is a stream editor that helps you search, find, replace, insert, and delete strings from the referenced text file without opening it. It is similar to the AWK and …

  5. Sed Tutorial

    This tutorial takes you through all about Stream EDitor (Sed), one of the most prominent text-processing utilities on GNU/Linux. Similar to many other GNU/Linux utilities, it is stream …

  6. GNU sed - GNU Project - Free Software Foundation

    Aug 9, 2020 · sed is commonly used to filter text, i.e., it takes text input, performs some operation (or set of operations) on it, and outputs the modified text. sed is typically used for extracting …

  7. SED Usage and Examples (Cheatsheet) - GoLinuxHub

    10 Basic examples of SED to perform per line action (print/delete) sed: remove all leading and ending blank whitespace from a file sed :Replace whole line

  8. SED command in Linux | Set 2 - GeeksforGeeks

    Jul 11, 2025 · It provides Non-interactive editing of text files that's why it's used to automate editing and has two buffers - pattern buffer and hold buffer.

  9. How to Use the sed Command in Linux - Hongkiat

    The name sed stands for “Stream Editor,” and it’s a powerful utility that allows you to parse and transform text right from the command line. Whether you’re dealing with configuration files, …

  10. Linux SED Command: Everything you Need to Know

    Oct 3, 2024 · SED (Stream Editor) is one of the most used Linux commands in scripts and command lines. It searches, replaces, inserts, and deletes strings. The most common use for …